summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseLib/FilePaths.c
diff options
context:
space:
mode:
authorHao Wu <hao.a.wu@intel.com>2016-11-17 14:07:54 +0800
committerHao Wu <hao.a.wu@intel.com>2016-11-21 09:23:25 +0800
commit6a62309459e36d59e4cfe14885fa3ed807841c62 (patch)
treeafe1c242b874577667ba9d38061fc22e8fa80c4f /MdePkg/Library/BaseLib/FilePaths.c
parent632dcfd6857b6211ce3fe9755d3c11e74ef5d447 (diff)
downloadedk2-6a62309459e36d59e4cfe14885fa3ed807841c62.tar.gz
edk2-6a62309459e36d59e4cfe14885fa3ed807841c62.tar.bz2
edk2-6a62309459e36d59e4cfe14885fa3ed807841c62.zip
MdePkg BaseLib: API PathRemoveLastItem not handle root paths properly
https://bugzilla.tianocore.org/show_bug.cgi?id=239 When the input path for API PathRemoveLastItem() is a root path like 'fs0:\', the API will return TRUE (indicating a directory or file was removed from the path) and modifies the path to 'fs0:'. In fact, there's no directory or file removed in the above case. This commit adds additional check to resolve this issue and modifies the API's description to make it more straightforward. Cc: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Liming Gao <liming.gao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
Diffstat (limited to 'MdePkg/Library/BaseLib/FilePaths.c')
-rw-r--r--MdePkg/Library/BaseLib/FilePaths.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/MdePkg/Library/BaseLib/FilePaths.c b/MdePkg/Library/BaseLib/FilePaths.c
index 183b3234d3..29a84ea902 100644
--- a/MdePkg/Library/BaseLib/FilePaths.c
+++ b/MdePkg/Library/BaseLib/FilePaths.c
@@ -14,9 +14,8 @@
#include <Library/BaseLib.h>
/**
- Removes the last directory or file entry in a path by changing the last
- L'\' to a CHAR_NULL. For a path which is like L"fs0:startup.nsh",
- it's converted to L"fs0:".
+ Removes the last directory or file entry in a path. For a path which is
+ like L"fs0:startup.nsh", it's converted to L"fs0:".
@param[in,out] Path A pointer to the path to modify.
@@ -38,7 +37,9 @@ PathRemoveLastItem(
; Walker != NULL && *Walker != CHAR_NULL
; Walker++
){
- if ((*Walker == L'\\' || *Walker == L':') && *(Walker + 1) != CHAR_NULL) {
+ if (*Walker == L'\\' && *(Walker + 1) != CHAR_NULL) {
+ LastSlash = Walker+1;
+ } else if (*Walker == L':' && *(Walker + 1) != L'\\' && *(Walker + 1) != CHAR_NULL) {
LastSlash = Walker+1;
}
}