mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 00:25:19 +02:00
Fix OOB read in trim("")
This commit is contained in:
@@ -295,11 +295,11 @@ inline std::string lowercase(const std::string &str)
|
|||||||
inline std::string trim(const std::string &str)
|
inline std::string trim(const std::string &str)
|
||||||
{
|
{
|
||||||
size_t front = 0;
|
size_t front = 0;
|
||||||
|
size_t back = str.size();
|
||||||
|
|
||||||
while (std::isspace(str[front]))
|
while (front < back && std::isspace(str[front]))
|
||||||
++front;
|
++front;
|
||||||
|
|
||||||
size_t back = str.size();
|
|
||||||
while (back > front && std::isspace(str[back - 1]))
|
while (back > front && std::isspace(str[back - 1]))
|
||||||
--back;
|
--back;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user