mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[NTDLL]
- Fix uninitialized variable usage causing first chance exceptions during SMSS2 loading on livecd svn path=/trunk/; revision=55546
This commit is contained in:
parent
b9193d4c1b
commit
038a7c87d1
1 changed files with 1 additions and 1 deletions
|
@ -783,7 +783,7 @@ LdrVerifyImageMatchesChecksum(IN HANDLE FileHandle,
|
|||
{
|
||||
FILE_STANDARD_INFORMATION FileStandardInfo;
|
||||
PIMAGE_IMPORT_DESCRIPTOR ImportData;
|
||||
PIMAGE_SECTION_HEADER LastSection;
|
||||
PIMAGE_SECTION_HEADER LastSection = NULL;
|
||||
IO_STATUS_BLOCK IoStatusBlock;
|
||||
PIMAGE_NT_HEADERS NtHeader;
|
||||
HANDLE SectionHandle;
|
||||
|
|
Loading…
Reference in a new issue