From 6ede5c473a0485699e28c50d844b080050ee466b Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Mon, 22 Jul 2013 19:56:04 +0000 Subject: [PATCH] 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 == b3afa10aa736600752fc215da2662d861f26b3be] --- windows/winctrls.c | 1 - 1 file changed, 1 deletion(-) diff --git a/windows/winctrls.c b/windows/winctrls.c index 72d462ed..49c13e8d 100644 --- a/windows/winctrls.c +++ b/windows/winctrls.c @@ -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); }