fixed uninitialized variable error
authorThomas Bluemel <thomas@reactsoft.com>
Thu, 29 Dec 2005 20:51:14 +0000 (20:51 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Thu, 29 Dec 2005 20:51:14 +0000 (20:51 +0000)
svn path=/trunk/; revision=20438

reactos/ntoskrnl/ex/error.c

index df15202..1b3e5f3 100644 (file)
@@ -99,7 +99,7 @@ NtRaiseHardError(IN NTSTATUS ErrorStatus,
                  IN ULONG ValidResponseOptions,
                  OUT PULONG Response)
 {
                  IN ULONG ValidResponseOptions,
                  OUT PULONG Response)
 {
-    NTSTATUS Status;
+    NTSTATUS Status = STATUS_SUCCESS;
     PULONG_PTR SafeParams = NULL;
     ULONG SafeResponse;
     UNICODE_STRING SafeString;
     PULONG_PTR SafeParams = NULL;
     ULONG SafeResponse;
     UNICODE_STRING SafeString;