Merge pull request #1399 from CosminCremarenco-Murex/fix-starts-with-ends-with

Fix String.h startsWith/endsWith
This commit is contained in:
Günter Obiltschnig 2016-09-07 09:14:40 +02:00 committed by GitHub
commit 47b4ef97db

View File

@ -627,7 +627,7 @@ template <class S>
bool startsWith(const S& str, const S& prefix)
/// Tests whether the string starts with the given prefix.
{
return equal(prefix.begin(), prefix.end(), str.begin());
return str.size() >= prefix.size() && equal(prefix.begin(), prefix.end(), str.begin());
}
@ -635,7 +635,7 @@ template <class S>
bool endsWith(const S& str, const S& suffix)
/// Tests whether the string ends with the given suffix.
{
return equal(suffix.rbegin(), suffix.rend(), str.rbegin());
return str.size() >= suffix.size() && equal(suffix.rbegin(), suffix.rend(), str.rbegin());
}