mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:25:48 +00:00
[FREELDR] Fix uninitialized variable warning. (Does anyone know why the warning isn't treated as an error?)
[SETUPLDR] Use mini_hal only on i386 builds svn path=/trunk/; revision=47164
This commit is contained in:
parent
3ffc64878c
commit
acb61e7d31
2 changed files with 4 additions and 1 deletions
|
@ -161,6 +161,7 @@ static LONG IsoLookupFile(PCSTR FileName, ULONG DeviceId, PISO_FILE_INFO IsoFile
|
|||
DPRINTM(DPRINT_FILESYSTEM, "IsoLookupFile() FileName = %s\n", FileName);
|
||||
|
||||
RtlZeroMemory(IsoFileInfoPointer, sizeof(ISO_FILE_INFO));
|
||||
RtlZeroMemory(&IsoFileInfo, sizeof(ISO_FILE_INFO));
|
||||
|
||||
//
|
||||
// Read The Primary Volume Descriptor
|
||||
|
|
|
@ -5,7 +5,9 @@
|
|||
<library>freeldr_startup</library>
|
||||
<library>freeldr_base64k</library>
|
||||
<library>freeldr_base</library>
|
||||
<library>mini_hal</library>
|
||||
<if property="ARCH" value="i386">
|
||||
<library>mini_hal</library>
|
||||
</if>
|
||||
<library>freeldr_arch</library>
|
||||
<library>setupldr_main</library>
|
||||
<library>rossym</library>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue