eliminate 'using uninitialized variable' warning

svn path=/trunk/; revision=12693
This commit is contained in:
Martin Fuchs 2005-01-01 11:42:12 +00:00
parent b167684edc
commit 879287ceb0

View file

@ -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;