mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
initialize variable
svn path=/trunk/; revision=4503
This commit is contained in:
parent
5ccf66a359
commit
6756a59755
2 changed files with 7 additions and 6 deletions
|
@ -400,7 +400,7 @@ GspHex2Mem (PCHAR Buffer,
|
|||
ULONG countinpage;
|
||||
ULONG i;
|
||||
CHAR ch;
|
||||
ULONG oldprot;
|
||||
ULONG oldprot = 0;
|
||||
|
||||
current = Address;
|
||||
while ( current < Address + Count )
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: exception.c,v 1.4 2002/11/14 18:21:07 chorns Exp $
|
||||
/* $Id: exception.c,v 1.5 2003/04/05 22:20:49 guido Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -321,11 +321,12 @@ RtlUnwind(PEXCEPTION_REGISTRATION RegistrationFrame,
|
|||
|
||||
DPRINT("ERHead is 0x%X\n", ERHead);
|
||||
|
||||
pExceptRec = &TempER;
|
||||
|
||||
if (ExceptionRecord == NULL) // The normal case
|
||||
{
|
||||
DPRINT("ExceptionRecord == NULL (normal)\n");
|
||||
|
||||
pExceptRec = &TempER;
|
||||
pExceptRec->ExceptionFlags = 0;
|
||||
pExceptRec->ExceptionCode = STATUS_UNWIND;
|
||||
pExceptRec->ExceptionRecord = NULL;
|
||||
|
|
Loading…
Reference in a new issue