fix compiler warning

This commit is contained in:
vaxerski 2022-11-05 13:49:55 +00:00
parent 65db3a7bd3
commit a71f44baa5
1 changed files with 1 additions and 1 deletions

View File

@ -1071,7 +1071,7 @@ void CConfigManager::parseLine(std::string& line) {
}
size_t startPos = 0;
while ((startPos = line.find("##", startPos)) != std::string::npos) {
while (startPos < line.length() - 1 && (startPos = line.find("##", startPos)) != std::string::npos) {
line.replace(startPos, 2, "#");
startPos++;
}