From ee734dcc73f5d19aa74756228a6b58f7aa9fe16a Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 11 Sep 2019 17:31:00 +0200 Subject: Fix T69754: crash in sculpting after library overrides were enabled The rest of this function uses G_MAIN, so do the same. --- source/blender/blenkernel/intern/undo_system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenkernel/intern/undo_system.c') diff --git a/source/blender/blenkernel/intern/undo_system.c b/source/blender/blenkernel/intern/undo_system.c index 36b950fb8f9..ecae1650a51 100644 --- a/source/blender/blenkernel/intern/undo_system.c +++ b/source/blender/blenkernel/intern/undo_system.c @@ -503,7 +503,7 @@ bool BKE_undosys_step_push_with_type(UndoStack *ustack, /* Might not be final place for this to be called - probably only want to call it from some * undo handlers, not all of them? */ if (BKE_override_library_is_enabled()) { - BKE_main_override_library_operations_create(CTX_data_main(C), false); + BKE_main_override_library_operations_create(G_MAIN, false); } /* Remove all undos after (also when 'ustack->step_active == NULL'). */ -- cgit v1.2.3