diff options
author | wuyizhong <wuyizhong@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-01 08:39:26 +0000 |
---|---|---|
committer | wuyizhong <wuyizhong@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-01 08:39:26 +0000 |
commit | af8eab8443b25260882a79ef471b078bfa21d497 (patch) | |
tree | 3ecdf808bb19fda9e07c2775475c6f78e3a16638 | |
parent | 88c8537c991f8b8b382e15d945bfdd91fdfb4e3e (diff) | |
download | edk2-platforms-af8eab8443b25260882a79ef471b078bfa21d497.tar.xz |
Miss loop variable incremental, otherwise, will cause dead loop.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1168 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | Tools/Source/TianoTools/FlashMap/FlashMap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/Source/TianoTools/FlashMap/FlashMap.c b/Tools/Source/TianoTools/FlashMap/FlashMap.c index 191e899ecc..7ce9a575f8 100644 --- a/Tools/Source/TianoTools/FlashMap/FlashMap.c +++ b/Tools/Source/TianoTools/FlashMap/FlashMap.c @@ -761,6 +761,7 @@ NormalizePath ( if (*Visitor == '\\') {
*Visitor = '/';
}
+ Visitor++;
}
return Visitor;
|