Author: dgorbachev Date: Sun Jan 3 21:12:43 2010 New Revision: 44919
URL: http://svn.reactos.org/svn/reactos?rev=44919&view=rev Log: Fix GCC 4.5.0 "operation may be undefined" warning.
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/window.c
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/window.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ntu... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/ntuser/window.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/ntuser/window.c [iso-8859-1] Sun Jan 3 21:12:43 2010 @@ -1256,7 +1256,7 @@ 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; }