Aggregration plugin: plug leak on error
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 5 Dec 2015 12:33:54 +0000 (13:33 +0100)
committerFlorian Forster <octo@collectd.org>
Sat, 5 Dec 2015 20:31:48 +0000 (21:31 +0100)
CID #38005

Signed-off-by: Florian Forster <octo@collectd.org>
src/aggregation.c

index 8175c66..56e4955 100644 (file)
@@ -262,6 +262,7 @@ static agg_instance_t *agg_instance_create (data_set_t const *ds, /* {{{ */
     inst->state_ ## field = malloc (sizeof (*inst->state_ ## field)); \
     if (inst->state_ ## field == NULL) { \
       agg_instance_destroy (inst); \
+      free (inst); \
       ERROR ("aggregation plugin: malloc() failed."); \
       return (NULL); \
     } \