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-06-27 09:19:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-27 09:19:25 +0400
commitff39d7b4bf3ed05d87a8f7005dadb8db564f34c5 (patch)
tree8d05398edf365b04efb482a8947c5243ffc05001 /source/blender/bmesh/operators/bmo_wireframe.c
parent3f2ecdcd4287ffe5f5eb20a6961aeed5041bfb9d (diff)
fix for incorrect selection when running MESH_OT_loop_to_region, running wire-frame operator directly after would crash.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_wireframe.c')
-rw-r--r--source/blender/bmesh/operators/bmo_wireframe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/bmesh/operators/bmo_wireframe.c b/source/blender/bmesh/operators/bmo_wireframe.c
index ba8c5432a68..fc2e1bbaf3e 100644
--- a/source/blender/bmesh/operators/bmo_wireframe.c
+++ b/source/blender/bmesh/operators/bmo_wireframe.c
@@ -80,6 +80,7 @@ static void bm_vert_boundary_tangent(BMVert *v, float r_no[3], float r_no_face[3
}
if (e_a && e_b) {
+ /* note, with an incorrectly flushed selection this can crash */
l_a = bm_edge_tag_faceloop(e_a);
l_b = bm_edge_tag_faceloop(e_b);