1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Back out r9964. I wasn't paying attention: every control is in the

byid tree but not all of them are in the byctrl tree.

[originally from svn r9970]
[r9964 == b3afa10aa7]
This commit is contained in:
Simon Tatham 2013-07-22 19:56:04 +00:00
parent 3b278a95f8
commit 6ede5c473a

View File

@ -1293,7 +1293,6 @@ void winctrl_remove(struct winctrls *wc, struct winctrl *c)
{
struct winctrl *ret;
ret = del234(wc->byctrl, c);
assert(ret == c);
ret = del234(wc->byid, c);
assert(ret == c);
}