correct uninitialized var, worked by accident.

This commit is contained in:
Campbell Barton 2013-08-19 00:39:28 +00:00
parent d4fde84bbd
commit 2060bb114a

@ -132,7 +132,7 @@ static bool bm_edgenet_path_check_overlap(
{
/* vert order doesn't matter */
unsigned int v_ls_tot = 0;
LinkNode *v_ls;
LinkNode *v_ls = NULL;
BMVert *v_pair[2] = {v1, v2};
unsigned int i;