diff options
author | Brad King <brad.king@kitware.com> | 2008-01-21 00:29:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-21 00:29:12 (GMT) |
commit | ce2b20361a152008994e5083b6d310e98b40e0e1 (patch) | |
tree | ea36c032cef7dca3feeef0d5df2389c6eb72b347 /Source/cmFindLibraryCommand.cxx | |
parent | 9f982d7d39a92fa1164a6e3f653dbce17ca38ad7 (diff) | |
download | CMake-ce2b20361a152008994e5083b6d310e98b40e0e1.zip CMake-ce2b20361a152008994e5083b6d310e98b40e0e1.tar.gz CMake-ce2b20361a152008994e5083b6d310e98b40e0e1.tar.bz2 |
BUG: Fix previous commit to not access empty strings out of bounds.
Diffstat (limited to 'Source/cmFindLibraryCommand.cxx')
-rw-r--r-- | Source/cmFindLibraryCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFindLibraryCommand.cxx b/Source/cmFindLibraryCommand.cxx index e7cfbeb..6f0b23a 100644 --- a/Source/cmFindLibraryCommand.cxx +++ b/Source/cmFindLibraryCommand.cxx @@ -186,7 +186,7 @@ std::string cmFindLibraryCommand::FindLibrary(const char* name) i != this->SearchPaths.end(); ++i) { std::string& p = *i; - if(p[p.size()-1] != '/') + if(p.empty() || p[p.size()-1] != '/') { p += "/"; } |