mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
eliminate 'using uninitialized variable' warning
svn path=/trunk/; revision=12693
This commit is contained in:
parent
b167684edc
commit
879287ceb0
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: elf.c,v 1.3 2004/12/30 08:13:00 hyperion Exp $
|
||||
/* $Id$
|
||||
*/
|
||||
|
||||
#include <ntoskrnl.h>
|
||||
|
@ -365,7 +365,7 @@ Elf64FmtCreateSection
|
|||
Elf_Off cbPHdrOffset;
|
||||
PVOID pBuffer;
|
||||
PMM_SECTION_SEGMENT pssSegments;
|
||||
Elf_Addr nImageBase;
|
||||
Elf_Addr nImageBase = 0;
|
||||
Elf_Addr nEntryPoint;
|
||||
ULONG nPrevVirtualEndOfSegment;
|
||||
ULONG i;
|
||||
|
|
Loading…
Reference in a new issue