projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f9cb7ef
)
src/common.c: Fix strstripnewline().
author
Florian Forster
<octo@collectd.org>
Wed, 10 Sep 2014 14:54:26 +0000
(16:54 +0200)
committer
Florian Forster
<octo@collectd.org>
Wed, 10 Sep 2014 14:54:26 +0000
(16:54 +0200)
Because the length of the string was decremented too late, the function
would actually overwrite the trailing null byte instead of the newline.
src/common.c
patch
|
blob
|
history
diff --git
a/src/common.c
b/src/common.c
index
9c4e64f
..
b771f62
100644
(file)
--- a/
src/common.c
+++ b/
src/common.c
@@
-370,8
+370,8
@@
size_t strstripnewline (char *buffer)
if ((buffer[buffer_len - 1] != '\n')
&& (buffer[buffer_len - 1] != '\r'))
break;
- buffer[buffer_len] = 0;
buffer_len--;
+ buffer[buffer_len] = 0;
}
return (buffer_len);