1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-09 23:28:06 -05:00

Missing assert.

[originally from svn r9964]
This commit is contained in:
Simon Tatham 2013-07-22 07:12:21 +00:00
parent 0a26bd74e1
commit b3afa10aa7

View File

@ -1293,6 +1293,7 @@ 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);
}