From 43bb8f12f44415c91f07ab5864aee7da51ef4a09 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Sat, 20 Aug 2016 16:03:33 +0200 Subject: Fix T49060: crashes during render with no apparent reason... Was a concurrent access of pointcache from both particle system and UI (time space). Pointcache not being threadsafe is really an issue to be addressed for its next version, for now simply locking spacetime (like we already do with 3DView), not ideal fix but it's working and safe for release. --- source/blender/editors/space_time/space_time.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/editors/space_time') diff --git a/source/blender/editors/space_time/space_time.c b/source/blender/editors/space_time/space_time.c index 021c4a54b0a..15eb154c757 100644 --- a/source/blender/editors/space_time/space_time.c +++ b/source/blender/editors/space_time/space_time.c @@ -813,6 +813,7 @@ void ED_spacetype_time(void) art->draw = time_main_region_draw; art->listener = time_main_region_listener; art->keymap = time_keymap; + art->lock = 1; /* Due to pointcache, see T4960. */ BLI_addhead(&st->regiontypes, art); /* regions: header */ -- cgit v1.2.3