mirror of https://github.com/acidanthera/audk.git
MdePkg: Fix 'cd ..\..' go up only 1 level.
When we try to cd up two levels using the "../.." notation we only go up one level. This patch fix this bug. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin <shumin.qiu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
61257251b2
commit
85df61243c
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
Defines file-path manipulation functions.
|
||||
|
||||
Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2011 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -96,7 +96,9 @@ PathCleanUpDirectories(
|
|||
}
|
||||
if ((TempString = StrStr(Path, L"\\..")) != NULL && *(TempString + 3) == CHAR_NULL) {
|
||||
*TempString = CHAR_NULL;
|
||||
PathRemoveLastItem(Path);
|
||||
if (!PathRemoveLastItem(Path)) {
|
||||
*TempString = L'\\';
|
||||
}
|
||||
}
|
||||
//
|
||||
// Fix up the .
|
||||
|
|
Loading…
Reference in New Issue