Index: boot/freeldr/freeldr/fs/iso.c =================================================================== --- boot/freeldr/freeldr/fs/iso.c (revision 59121) +++ boot/freeldr/freeldr/fs/iso.c (working copy) @@ -152,7 +152,7 @@ UINT32 i; ULONG NumberOfPathParts; CHAR PathPart[261]; - PVOID DirectoryBuffer; + PVOID DirectoryBuffer = NULL; /* Suppress the -Wmaybe-uninitialized warning */ ULONG DirectorySector; ULONG DirectoryLength; ISO_FILE_INFO IsoFileInfo; Index: lib/rtl/bootdata.c =================================================================== --- lib/rtl/bootdata.c (revision 59121) +++ lib/rtl/bootdata.c (working copy) @@ -694,6 +694,9 @@ HANDLE FileHandle; NTSTATUS Status; + /* Suppress the -Wunused-but-set-variable warning */ + UNREFERENCED_PARAMETER(AllocationSize); + /* Initialize the file name */ RtlInitUnicodeString(&FileName, L"\\SystemRoot\\bootstat.dat");