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-03 04:30:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-03 04:30:55 +0400
commitbd53226b5c019f8f2ef82b7f22a416a32b1723c3 (patch)
tree2b37cd08a415f640b1bf359ba1b6abf128cc9e00 /source/blender
parentdbdd1bb4f2071975bd9218fc7990354b226d6061 (diff)
fix [#32423] Extrude crash
mistake in r50086 caused the crash (killing the wrong vertex)
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/bmesh/operators/bmo_extrude.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_extrude.c b/source/blender/bmesh/operators/bmo_extrude.c
index 9ea8e631435..c8be7c9ce34 100644
--- a/source/blender/bmesh/operators/bmo_extrude.c
+++ b/source/blender/bmesh/operators/bmo_extrude.c
@@ -390,7 +390,7 @@ void bmo_extrude_face_region_exec(BMesh *bm, BMOperator *op)
if (!v1->e)
BM_vert_kill(bm, v1);
if (!v2->e)
- BM_vert_kill(bm, v1);
+ BM_vert_kill(bm, v2);
continue;
}