- Never, ever, mix warning fixes with code logic changes. Should fix setup boot.

svn path=/trunk/; revision=38307
This commit is contained in:
Stefan Ginsberg 2008-12-23 18:46:59 +00:00
parent 06da69ad88
commit 5d44d1b196
2 changed files with 2 additions and 2 deletions

View file

@ -429,7 +429,7 @@ PtrExt2CCB PtrCCB)
{ {
// Read Failure // Read Failure
DebugTrace(DEBUG_TRACE_MISC, "Cache read failiure while reading in volume meta data", 0); DebugTrace(DEBUG_TRACE_MISC, "Cache read failiure while reading in volume meta data", 0);
try_return( RC = STATUS_ACCESS_DENIED ); try_return();
} }
else else
{ {

View file

@ -255,7 +255,7 @@ Ext2MountVolume (
DebugTrace(DEBUG_TRACE_MOUNT, "OEM[%s]", BootSector->Oem); DebugTrace(DEBUG_TRACE_MOUNT, "OEM[%s]", BootSector->Oem);
if (BootSector->Oem[0]) if (BootSector->Oem[0])
{ {
try_return (Status = STATUS_WRONG_VOLUME); try_return();
} }
// Allocating memory for reading in Super Block... // Allocating memory for reading in Super Block...