- 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:
Aleksey Bragin 2008-05-07 10:06:07 +00:00
parent 0ee50a0aaf
commit 2bf0d241a9

View file

@ -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();