summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnderw Fish <afish@apple.com>2014-08-29 18:45:26 +0000
committerandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>2014-08-29 18:45:26 +0000
commite320062406d72820016be97786fb94ab577a13d1 (patch)
tree37cc7a6c0b77d9059a1541c5ee66b19040631d76
parent9358dc21e765a6976cdcdcfe4d72f0efb0e26ec1 (diff)
downloadedk2-e320062406d72820016be97786fb94ab577a13d1.tar.gz
edk2-e320062406d72820016be97786fb94ab577a13d1.tar.bz2
edk2-e320062406d72820016be97786fb94ab577a13d1.zip
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
-rw-r--r--EmulatorPkg/Unix/Host/PosixFileSystem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/EmulatorPkg/Unix/Host/PosixFileSystem.c b/EmulatorPkg/Unix/Host/PosixFileSystem.c
index 40b412e5f2..98e8c894eb 100644
--- a/EmulatorPkg/Unix/Host/PosixFileSystem.c
+++ b/EmulatorPkg/Unix/Host/PosixFileSystem.c
@@ -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;