mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:22:58 +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>
|
#include <ntoskrnl.h>
|
||||||
|
@ -365,7 +365,7 @@ Elf64FmtCreateSection
|
||||||
Elf_Off cbPHdrOffset;
|
Elf_Off cbPHdrOffset;
|
||||||
PVOID pBuffer;
|
PVOID pBuffer;
|
||||||
PMM_SECTION_SEGMENT pssSegments;
|
PMM_SECTION_SEGMENT pssSegments;
|
||||||
Elf_Addr nImageBase;
|
Elf_Addr nImageBase = 0;
|
||||||
Elf_Addr nEntryPoint;
|
Elf_Addr nEntryPoint;
|
||||||
ULONG nPrevVirtualEndOfSegment;
|
ULONG nPrevVirtualEndOfSegment;
|
||||||
ULONG i;
|
ULONG i;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue