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:
authorCampbell Barton <ideasman42@gmail.com>2013-07-28 11:11:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-07-28 11:11:00 +0400
commitb5890b35198add206e47b7edb523b7c4ff1fcf12 (patch)
treee81c9351c8385f9367b6886487b002123deb75bb /source/blender
parentc4a50e9aeb589045b857fea878fb86faba39dd3c (diff)
fix for freed memory access clearing tracks in the clip editor.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_clip/tracking_ops.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c
index 49b87a6160a..f3d070452a5 100644
--- a/source/blender/editors/space_clip/tracking_ops.c
+++ b/source/blender/editors/space_clip/tracking_ops.c
@@ -3478,6 +3478,8 @@ static int clean_tracks_exec(bContext *C, wmOperator *op)
track = next;
}
+ BKE_tracking_dopesheet_tag_update(tracking);
+
WM_event_add_notifier(C, NC_MOVIECLIP | ND_SELECT, clip);
return OPERATOR_FINISHED;