From dfb341bca520dbe01e2f7b551548dea6aad6310c Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Tue, 2 Sep 2014 16:54:07 +0200 Subject: [PATCH] src/utils_rrdcreate.c: Free "args". Thanks to Yves Mettier for pointing this out! Fixes: #661 --- src/utils_rrdcreate.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils_rrdcreate.c b/src/utils_rrdcreate.c index a34e0da0..5368059e 100644 --- a/src/utils_rrdcreate.c +++ b/src/utils_rrdcreate.c @@ -99,6 +99,7 @@ static void srrd_create_args_destroy (srrd_create_args_t *args) sfree (args->argv[i]); sfree (args->argv); } + sfree (args); } /* void srrd_create_args_destroy */ static srrd_create_args_t *srrd_create_args_create (const char *filename, -- 2.11.0