projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a19dedd
)
Use sstrncpy instead of strncpy in sysevent plugin
author
Andrew Bays
<andrew.bays@gmail.com>
Mon, 16 Sep 2019 18:08:09 +0000
(14:08 -0400)
committer
Andrew Bays
<andrew.bays@gmail.com>
Mon, 16 Sep 2019 18:08:09 +0000
(14:08 -0400)
src/sysevent.c
patch
|
blob
|
history
diff --git
a/src/sysevent.c
b/src/sysevent.c
index
b63767d
..
aab5141
100644
(file)
--- a/
src/sysevent.c
+++ b/
src/sysevent.c
@@
-472,7
+472,7
@@
static int read_socket() {
} else {
DEBUG("sysevent plugin: writing %s", buffer);
- strncpy(ring.buffer[ring.head], buffer, sizeof(buffer));
+ s
s
trncpy(ring.buffer[ring.head], buffer, sizeof(buffer));
ring.timestamp[ring.head] = cdtime();
ring.head = next;
}