Merge pull request #69 from mdartmann/fix-underflow-remove-begin-end-spaces-tabs

Fix string underflow in `removeBeginEndSpacesTabs()`
This commit is contained in:
vaxerski 2022-05-12 12:20:40 +02:00 committed by GitHub
commit 0de058beb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,7 +69,7 @@ std::string removeBeginEndSpacesTabs(std::string str) {
str = str.substr(1);
}
while (str[str.length() - 1] == ' ' || str[str.length() - 1] == '\t') {
while (str.length() != 0 && (str[str.length() - 1] == ' ' || str[str.length() - 1] == '\t')) {
str = str.substr(0, str.length() - 1);
}