X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Futils_format_graphite.c;h=69c619f425702ffc6c329738673c6887bdac875a;hb=c442c66d9e98852f1b8eaa1b816d6ee7f84d0342;hp=f09e0bc8400db3453f62315b9fc12a9c616601ad;hpb=f95938c4b379da2f28b9423a682012a49a617832;p=collectd.git diff --git a/src/utils_format_graphite.c b/src/utils_format_graphite.c index f09e0bc8..69c619f4 100644 --- a/src/utils_format_graphite.c +++ b/src/utils_format_graphite.c @@ -161,6 +161,7 @@ static int gr_format_name (char *ret, int ret_len, } else sstrncpy (tmp_type, n_type, sizeof (tmp_type)); + /* Assert always_append_ds -> ds_name */ assert (!(flags & GRAPHITE_ALWAYS_APPEND_DS) || (ds_name != NULL)); if (ds_name != NULL) @@ -256,6 +257,7 @@ int format_graphite (char *buffer, size_t buffer_size, } memcpy((void *) (buffer + buffer_pos), message, message_len); buffer_pos += message_len; + buffer[buffer_pos] = '\0'; } sfree (rates); return (status);