bug fix, incorrect update of a wordlist's wl_prev pointer
This commit is contained in:
parent
4ca6e56863
commit
e1f8033f1c
|
|
@ -364,7 +364,7 @@ cctowl(struct ccom *cc, bool sib)
|
||||||
;
|
;
|
||||||
end->wl_next = cctowl(cc->cc_sibling, TRUE);
|
end->wl_next = cctowl(cc->cc_sibling, TRUE);
|
||||||
if (end->wl_next)
|
if (end->wl_next)
|
||||||
end->wl_next->wl_prev = wl;
|
end->wl_next->wl_prev = end;
|
||||||
} else
|
} else
|
||||||
wl = cctowl(cc->cc_sibling, TRUE);
|
wl = cctowl(cc->cc_sibling, TRUE);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue