mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
- Never, ever, mix warning fixes with code logic changes. Should fix setup boot.
svn path=/trunk/; revision=38307
This commit is contained in:
parent
06da69ad88
commit
5d44d1b196
2 changed files with 2 additions and 2 deletions
|
@ -429,7 +429,7 @@ PtrExt2CCB PtrCCB)
|
|||
{
|
||||
// Read Failure
|
||||
DebugTrace(DEBUG_TRACE_MISC, "Cache read failiure while reading in volume meta data", 0);
|
||||
try_return( RC = STATUS_ACCESS_DENIED );
|
||||
try_return();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -255,7 +255,7 @@ Ext2MountVolume (
|
|||
DebugTrace(DEBUG_TRACE_MOUNT, "OEM[%s]", BootSector->Oem);
|
||||
if (BootSector->Oem[0])
|
||||
{
|
||||
try_return (Status = STATUS_WRONG_VOLUME);
|
||||
try_return();
|
||||
}
|
||||
|
||||
// Allocating memory for reading in Super Block...
|
||||
|
|
Loading…
Reference in a new issue