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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-11-18 12:43:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-11-18 12:56:17 +0300
commit4dae5a7c3a6b2903f1623650135b2ff8c1fdfe93 (patch)
tree962ac607cf17281dfdd6b038cd0389189e60f6a5 /source
parent5f7b273236fc09ad4752529b964e0e1d6c681979 (diff)
correct uninitialized var use
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index a136bc5e0c5..a480b2051cc 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -878,7 +878,7 @@ static int edbm_vert_connect_exec(bContext *C, wmOperator *op)
BMesh *bm = em->bm;
BMOperator bmop;
bool is_pair = (bm->totvertsel == 2);
- int len;
+ int len = 0;
bool check_degenerate = true;
const int verts_len = bm->totvertsel;
BMVert **verts;