From e14894aad2b80866eb242d2b22fe1dcda2817c0f Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Sun, 20 Sep 2020 13:23:49 -0500 Subject: Fix T80993: Crash duplicating inactive workspace We need to check for the property editor's runtime struct before duplicating it. --- source/blender/editors/space_buttons/space_buttons.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/blender/editors') diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c index a12b7bddf9f..a4eddd460b0 100644 --- a/source/blender/editors/space_buttons/space_buttons.c +++ b/source/blender/editors/space_buttons/space_buttons.c @@ -132,8 +132,10 @@ static SpaceLink *buttons_duplicate(SpaceLink *sl) /* clear or remove stuff from old */ sbutsn->path = NULL; sbutsn->texuser = NULL; - sbutsn->runtime = MEM_dupallocN(sfile_old->runtime); - sbutsn->runtime->search_string[0] = '\0'; + if (sfile_old->runtime != NULL) { + sbutsn->runtime = MEM_dupallocN(sfile_old->runtime); + sbutsn->runtime->search_string[0] = '\0'; + } return (SpaceLink *)sbutsn; } -- cgit v1.2.3