Sculpt: fix missing NULL check for wire edges

This commit is contained in:
Joseph Eagar 2021-10-16 02:26:48 -07:00
parent f838fbde06
commit 1e194722e5
1 changed files with 4 additions and 0 deletions

View File

@ -128,6 +128,10 @@ void SCULPT_reproject_cdata(SculptSession *ss,
do {
e->head.api_flag &= ~tag;
if (!e->l) {
continue;
}
BMLoop *l = e->l;
do {
l->head.hflag &= ~tag;