From 47d2353f262b967dfdc344bde39040c6f92d0db2 Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Fri, 25 Feb 2011 08:40:57 +0000 Subject: [PATCH] Fix for [#26205] Crash when duplicating window * Timeline duplication code freed the original time caches too. --- source/blender/editors/space_time/space_time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_time/space_time.c b/source/blender/editors/space_time/space_time.c index b70fc05460b..65902c692c4 100644 --- a/source/blender/editors/space_time/space_time.c +++ b/source/blender/editors/space_time/space_time.c @@ -638,7 +638,7 @@ static SpaceLink *time_duplicate(SpaceLink *sl) SpaceTime *stime= (SpaceTime *)sl; SpaceTime *stimen= MEM_dupallocN(stime); - time_cache_free(stimen); + stimen->caches.first = stimen->caches.last = NULL; return (SpaceLink *)stimen; }