From c19d527ed86aaa2a43581e2099e82b89b5fe4f23 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 9 Aug 2016 20:00:53 +0200 Subject: Fix crash in id remapping of Graph editor. dopsheet data pointer is not guaranteed to be set it seems... --- source/blender/editors/space_graph/space_graph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_graph/space_graph.c') diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c index 2582ba4be8d..b35d1b2c777 100644 --- a/source/blender/editors/space_graph/space_graph.c +++ b/source/blender/editors/space_graph/space_graph.c @@ -687,7 +687,7 @@ static void graph_id_remap(ScrArea *UNUSED(sa), SpaceLink *slink, ID *old_id, ID return; } - if ((ID *)sgraph->ads->filter_grp == old_id) { + if (sgraph->ads && (ID *)sgraph->ads->filter_grp == old_id) { sgraph->ads->filter_grp = (Group *)new_id; } } -- cgit v1.2.3