From f7958d71313733156ba9ff1d36c7e54ac5df41f7 Mon Sep 17 00:00:00 2001 From: Scott Sanders Date: Sun, 2 Oct 2011 19:56:24 -0400 Subject: [PATCH] Must be getting tired... --- src/write_graphite.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/write_graphite.c b/src/write_graphite.c index 9f7e5e74..870ce2bb 100644 --- a/src/write_graphite.c +++ b/src/write_graphite.c @@ -354,6 +354,12 @@ static int wg_format_name (char *ret, int ret_len, return (-1); } + if ((n_ds_name = malloc(strlen(ds_name)+1)) == NULL) + { + ERROR ("Unable to allocate memory for normalized datasource name buffer"); + return (-1); + } + if (ds_name && ds_name[0] != '\0') { if (mangle_dots(n_ds_name, ds_name) == -1) { -- 2.11.0