Skip to content
Snippets Groups Projects
Commit b69809c8 authored by Campbell Barton's avatar Campbell Barton
Browse files

Fix T39331: Dissolve vertex crash

parent 32d5d072
No related branches found
No related tags found
No related merge requests found
......@@ -205,6 +205,7 @@ bool BM_disk_dissolve(BMesh *bm, BMVert *v)
return false;
}
if (e->l) {
/* get remaining two faces */
f = e->l->f;
f2 = e->l->radial_next->f;
......@@ -216,6 +217,7 @@ bool BM_disk_dissolve(BMesh *bm, BMVert *v)
}
}
}
}
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment