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:
authorTon Roosendaal <ton@blender.org>2005-04-11 18:01:34 +0400
committerTon Roosendaal <ton@blender.org>2005-04-11 18:01:34 +0400
commit8eaef2525f5ef3b9b21819ba3cfacfc19bafc447 (patch)
tree5251e7cb9dc1a560f649eed2347da0407029451d /source/blender/src/editmesh_lib.c
parent618ac4a4e91423c122939c404234b94f78f7acc0 (diff)
Bug fix #2413
Usage of uninitialezed pointer in 'extrude edges only' could crash.
Diffstat (limited to 'source/blender/src/editmesh_lib.c')
-rw-r--r--source/blender/src/editmesh_lib.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/editmesh_lib.c b/source/blender/src/editmesh_lib.c
index 554afc35b4f..e64e72eb7f1 100644
--- a/source/blender/src/editmesh_lib.c
+++ b/source/blender/src/editmesh_lib.c
@@ -586,6 +586,7 @@ short extrudeflag_edges_indiv(short flag, float *nor)
EditFace *efa;
for(eve= em->verts.first; eve; eve= eve->next) eve->vn= NULL;
+ for(eed= em->edges.first; eed; eed= eed->next) eed->vn= NULL;
set_edge_directions();