- Fix uninitialized Callback var usage, spotted by Stefan Ginsberg. Probably fixes...
authorAleksey Bragin <aleksey@reactos.org>
Wed, 7 May 2008 10:06:07 +0000 (10:06 +0000)
committerAleksey Bragin <aleksey@reactos.org>
Wed, 7 May 2008 10:06:07 +0000 (10:06 +0000)
See issue #3214 for more details.

svn path=/trunk/; revision=33340

reactos/ntoskrnl/lpc/send.c

index f0bbaaf..320f8aa 100644 (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();