fixed uninitialized variable warning
authorThomas Bluemel <thomas@reactsoft.com>
Thu, 12 Jan 2006 00:13:45 +0000 (00:13 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Thu, 12 Jan 2006 00:13:45 +0000 (00:13 +0000)
svn path=/trunk/; revision=20796

reactos/ntoskrnl/ke/usercall.c

index c9bbcfc..9ca8b1f 100644 (file)
@@ -40,7 +40,7 @@ KeUserModeCallback(IN ULONG RoutineIndex,
 {
     ULONG_PTR NewStack, OldStack;
     PULONG UserEsp;
-    NTSTATUS CallbackStatus;
+    NTSTATUS CallbackStatus = STATUS_SUCCESS;
     PEXCEPTION_REGISTRATION_RECORD ExceptionList;
     DPRINT("KeUserModeCallback(RoutineIndex %d, Argument %X, ArgumentLength %d)\n",
             RoutineIndex, Argument, ArgumentLength);