mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
uninitialized variable fix
svn path=/trunk/; revision=25640
This commit is contained in:
parent
594d924eaa
commit
c8d34de940
1 changed files with 1 additions and 1 deletions
|
@ -1830,7 +1830,7 @@ NtWaitForDebugEvent(IN HANDLE DebugHandle,
|
|||
PDEBUG_OBJECT DebugObject;
|
||||
DBGUI_WAIT_STATE_CHANGE WaitStateChange;
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
PDEBUG_EVENT DebugEvent, DebugEvent2;
|
||||
PDEBUG_EVENT DebugEvent = NULL, DebugEvent2;
|
||||
PLIST_ENTRY ListHead, NextEntry, NextEntry2;
|
||||
PAGED_CODE();
|
||||
DBGKTRACE(DBGK_OBJECT_DEBUG, "Handle: %p\n", DebugHandle);
|
||||
|
|
Loading…
Reference in a new issue