forked from Mirrorlandia_minetest/minetest
Fix off-by-one in log output line length (#6896)
This commit is contained in:
parent
6b5e2618fb
commit
127b1fa6f8
@ -347,13 +347,10 @@ void StringBuffer::push_back(char c)
|
||||
flush(std::string(buffer, buffer_index));
|
||||
buffer_index = 0;
|
||||
} else {
|
||||
int index = buffer_index;
|
||||
buffer[index++] = c;
|
||||
if (index >= BUFFER_LENGTH) {
|
||||
buffer[buffer_index++] = c;
|
||||
if (buffer_index >= BUFFER_LENGTH) {
|
||||
flush(std::string(buffer, buffer_index));
|
||||
buffer_index = 0;
|
||||
} else {
|
||||
buffer_index = index;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user