mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
fixed uninitialized variable warning
svn path=/trunk/; revision=17460
This commit is contained in:
parent
c0e80c80f9
commit
5d1efdc288
1 changed files with 1 additions and 1 deletions
|
@ -1081,7 +1081,7 @@ KdpGdbEnterDebuggerException(PEXCEPTION_RECORD ExceptionRecord,
|
||||||
BOOLEAN Stepping;
|
BOOLEAN Stepping;
|
||||||
LONG Address;
|
LONG Address;
|
||||||
LONG Length;
|
LONG Length;
|
||||||
LONG SigVal;
|
LONG SigVal = 0;
|
||||||
LONG NewPC;
|
LONG NewPC;
|
||||||
PCHAR ptr;
|
PCHAR ptr;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue