bug fix, incorrect update of a wordlist's wl_prev pointer

This commit is contained in:
rlar 2012-07-12 18:47:26 +02:00
parent 4ca6e56863
commit e1f8033f1c
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ cctowl(struct ccom *cc, bool sib)
;
end->wl_next = cctowl(cc->cc_sibling, TRUE);
if (end->wl_next)
end->wl_next->wl_prev = wl;
end->wl_next->wl_prev = end;
} else
wl = cctowl(cc->cc_sibling, TRUE);
}