Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Karhu <jhkarh@gmail.com>2011-02-25 11:40:57 +0300
committerJanne Karhu <jhkarh@gmail.com>2011-02-25 11:40:57 +0300
commit47d2353f262b967dfdc344bde39040c6f92d0db2 (patch)
treef2ae22028189699c46c152b55bc7eea0ed84ba42 /source/blender
parent5005853d40d27202020517c01a7396d9b42081c5 (diff)
Fix for [#26205] Crash when duplicating window
* Timeline duplication code freed the original time caches too.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_time/space_time.c2
1 files changed, 1 insertions, 1 deletions
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;
}