diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-01-04 04:17:48 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-01-04 04:17:48 +0000 |
commit | 1e21413c8c3489a6e84b08386ce10ed281f5203c (patch) | |
tree | 9a71158f3c19931df996d058398e5bc4ab5b80e1 | |
parent | 5aaa6e114a2dee1280bf1868af4c46f46b55e48e (diff) | |
download | edk2-1e21413c8c3489a6e84b08386ce10ed281f5203c.zip edk2-1e21413c8c3489a6e84b08386ce10ed281f5203c.tar.gz edk2-1e21413c8c3489a6e84b08386ce10ed281f5203c.tar.bz2 |
Fix the issue in PeiCore that doesn’t handle Unix style file path of PDB file.
Signed-off-by: lgao4
Reviewed-by:rsun3
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12906 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Core/Pei/Image/Image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Core/Pei/Image/Image.c b/MdeModulePkg/Core/Pei/Image/Image.c index 0906548..843e020 100644 --- a/MdeModulePkg/Core/Pei/Image/Image.c +++ b/MdeModulePkg/Core/Pei/Image/Image.c @@ -1,7 +1,7 @@ /** @file
Pei Core Load Image Support
-Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2012, 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
@@ -572,7 +572,7 @@ PeiLoadImageLoadImage ( if (AsciiString != NULL) {
for (Index = (INT32) AsciiStrLen (AsciiString) - 1; Index >= 0; Index --) {
- if (AsciiString[Index] == '\\') {
+ if (AsciiString[Index] == '\\' || AsciiString[Index] == '/') {
break;
}
}
|