mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
- Fix uninitialized Callback var usage, spotted by Stefan Ginsberg. Probably fixes bug 3214.
See issue #3214 for more details. svn path=/trunk/; revision=33340
This commit is contained in:
parent
0ee50a0aaf
commit
2bf0d241a9
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ LpcRequestWaitReplyPort(IN PVOID PortObject,
|
|||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
PLPCP_MESSAGE Message;
|
||||
PETHREAD Thread = PsGetCurrentThread();
|
||||
BOOLEAN Callback;
|
||||
BOOLEAN Callback = FALSE;
|
||||
PKSEMAPHORE Semaphore;
|
||||
ULONG MessageType;
|
||||
PAGED_CODE();
|
||||
|
|
Loading…
Reference in a new issue