1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-29 17:39:09 +00:00

Fix 208952f: incorrect truncation in string setting validation

This commit is contained in:
Rubidium
2024-09-02 21:23:39 +02:00
committed by rubidium42
parent b80f205967
commit f2a8e18792

View File

@@ -578,7 +578,7 @@ void StringSettingDesc::MakeValueValid(std::string &str) const
/* In case a maximum length is imposed by the setting, the length
* includes the '\0' termination for network transfer purposes.
* Also ensure the string is valid after chopping of some bytes. */
std::string stdstr(str, this->max_length - 1);
std::string stdstr(str, 0, this->max_length - 1);
str.assign(StrMakeValid(stdstr, SVS_NONE));
}