projects
/
oweals
/
minetest.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63f4ee2
)
Fix off-by-one in log output line length (#6896)
author
Pedro Gimeno
<4267396+pgimeno@users.noreply.github.com>
Tue, 9 Jan 2018 18:07:14 +0000
(19:07 +0100)
committer
SmallJoker
<SmallJoker@users.noreply.github.com>
Tue, 9 Jan 2018 18:07:14 +0000
(19:07 +0100)
src/log.cpp
patch
|
blob
|
history
diff --git
a/src/log.cpp
b/src/log.cpp
index 28118066f4cc79d44c3f36ba7081b8439ae07e37..3e9229e38799485c58300082c72190ef45755b8b 100644
(file)
--- a/
src/log.cpp
+++ b/
src/log.cpp
@@
-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;
}
}
}