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>2012-09-30 14:39:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-30 14:39:00 +0400
commit9f67ebc35117313bb48f779a727f239eabf22293 (patch)
treecb14338ae6e01afc73e6d7a4ea34023e68b4f8b7 /source/blender/editors/space_clip/clip_editor.c
parent368e502dba0a635b10a0ee2ea1641666a91283ff (diff)
fix for crash drawing the clip view with a blend file that has lock to selected, but no clip in the view.
Diffstat (limited to 'source/blender/editors/space_clip/clip_editor.c')
-rw-r--r--source/blender/editors/space_clip/clip_editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_clip/clip_editor.c b/source/blender/editors/space_clip/clip_editor.c
index 32f91671daf..167353e7cb7 100644
--- a/source/blender/editors/space_clip/clip_editor.c
+++ b/source/blender/editors/space_clip/clip_editor.c
@@ -368,7 +368,7 @@ int ED_clip_view_selection(const bContext *C, ARegion *ar, int fit)
ED_space_clip_get_size(sc, &frame_width, &frame_height);
- if (frame_width == 0 || frame_height == 0)
+ if ((frame_width == 0) || (frame_height == 0) || (sc->clip == NULL))
return FALSE;
if (!selected_boundbox(sc, min, max))