X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_cmd_putnotif.c;h=669ef837b94fa6ff5ae0678f249ddebbe25088b5;hb=f0d468892e1c173b226f739be48291981473b4fb;hp=530d153ea91437b0375b20eed65e85f426d5a5e8;hpb=3307054b6ab46b51fdda4f528e72d119e9de3071;p=collectd.git diff --git a/src/utils_cmd_putnotif.c b/src/utils_cmd_putnotif.c index 530d153e..669ef837 100644 --- a/src/utils_cmd_putnotif.c +++ b/src/utils_cmd_putnotif.c @@ -25,10 +25,12 @@ **/ #include "collectd.h" + #include "common.h" #include "plugin.h" #include "utils_parse_option.h" +#include "utils_cmd_putnotif.h" #define print_to_socket(fh, ...) \ do { \ @@ -118,7 +120,7 @@ static int set_option (notification_t *n, const char *option, const char *value) int handle_putnotif (FILE *fh, char *buffer) { char *command; - notification_t n; + notification_t n = { 0 }; int status; if ((fh == NULL) || (buffer == NULL)) @@ -142,8 +144,6 @@ int handle_putnotif (FILE *fh, char *buffer) return (-1); } - memset (&n, '\0', sizeof (n)); - status = 0; while (*buffer != 0) {