mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
fixed uninitialized variable error
svn path=/trunk/; revision=20438
This commit is contained in:
parent
3930c5e306
commit
5dfcacfa42
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ NtRaiseHardError(IN NTSTATUS ErrorStatus,
|
|||
IN ULONG ValidResponseOptions,
|
||||
OUT PULONG Response)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
PULONG_PTR SafeParams = NULL;
|
||||
ULONG SafeResponse;
|
||||
UNICODE_STRING SafeString;
|
||||
|
|
Loading…
Reference in a new issue