EmulatorPkg: Unix: Fix uninitiailzed variable bug.

clang warns on this error.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Anderw Fish <afish@apple.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>


git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15981 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Anderw Fish 2014-08-29 18:45:26 +00:00 committed by andrewfish
parent 9358dc21e7
commit e320062406
1 changed files with 1 additions and 1 deletions

View File

@ -393,6 +393,7 @@ PosixFileOpen (
// BUGBUG: assume an open of root
// if current location, return current data
//
TrailingDash = FALSE;
if ((StrCmp (FileName, L"\\") == 0) ||
(StrCmp (FileName, L".") == 0 && PrivateFile->IsRootDirectory)) {
OpenRoot:
@ -401,7 +402,6 @@ OpenRoot:
goto Done;
}
TrailingDash = FALSE;
if (FileName[StrLen (FileName) - 1] == L'\\') {
TrailingDash = TRUE;
FileName[StrLen (FileName) - 1] = 0;