mirror of https://github.com/acidanthera/audk.git
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9720 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
70575d12a9
commit
d54744cd6c
|
@ -1073,7 +1073,11 @@ FileHandleEof(
|
|||
return (FALSE);
|
||||
}
|
||||
|
||||
RetVal = (Pos == Info->FileSize)?TRUE:FALSE;
|
||||
if (Pos == Info->FileSize) {
|
||||
RetVal = TRUE;
|
||||
} else {
|
||||
RetVal = FALSE;
|
||||
}
|
||||
|
||||
FreePool (Info);
|
||||
|
||||
|
|
Loading…
Reference in New Issue