]> git.proxmox.com Git - mirror_edk2.git/commitdiff
EmulatorPkg: Unix: Fix uninitiailzed variable bug.
authorAnderw Fish <afish@apple.com>
Fri, 29 Aug 2014 18:45:26 +0000 (18:45 +0000)
committerandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 29 Aug 2014 18:45:26 +0000 (18:45 +0000)
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

EmulatorPkg/Unix/Host/PosixFileSystem.c

index 40b412e5f2dada2988c8e645d48ede3e89a70149..98e8c894eb168bfb9a61fd10b75fa87a32bd4ccc 100644 (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;