Fix GCC 4.5.0 "operation may be undefined" warning.

svn path=/trunk/; revision=44919
This commit is contained in:
Dmitry Gorbachev 2010-01-03 20:12:43 +00:00
parent 40da0785e9
commit 5e3adf9d47

View file

@ -1256,7 +1256,7 @@ IntUnlinkWnd(PWND Wnd)
if (Wnd->spwndParent && Wnd->spwndParent->spwndChild == Wnd)
Wnd->spwndParent->spwndChild = Wnd->spwndNext;
Wnd->spwndParent = Wnd->spwndPrev = Wnd->spwndNext = Wnd->spwndParent = NULL;
Wnd->spwndPrev = Wnd->spwndNext = Wnd->spwndParent = NULL;
}