Author: fireball
Date: Mon Oct 18 10:10:52 2010
New Revision: 49192
URL:
http://svn.reactos.org/svn/reactos?rev=49192&view=rev
Log:
- Zero-initialize eparent, fixes uninitialized memory access (seen in traces like in bug
#5631).
Modified:
branches/arwinss/reactos/subsystems/win32/win32k/wine/winstation.c
Modified: branches/arwinss/reactos/subsystems/win32/win32k/wine/winstation.c
URL:
http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/subsystems/win3…
==============================================================================
--- branches/arwinss/reactos/subsystems/win32/win32k/wine/winstation.c [iso-8859-1]
(original)
+++ branches/arwinss/reactos/subsystems/win32/win32k/wine/winstation.c [iso-8859-1] Mon
Oct 18 10:10:52 2010
@@ -376,7 +376,7 @@
struct desktop *desktop = NULL;
obj_handle_t handle;
PPROCESSINFO parent = NULL;
- PEPROCESS eparent;
+ PEPROCESS eparent = NULL;
HANDLE parent_handle;
NTSTATUS status;