Code

src/utils_rrdcreate.c: Free "args".
authorFlorian Forster <octo@google.com>
Tue, 2 Sep 2014 14:54:07 +0000 (16:54 +0200)
committerFlorian Forster <octo@google.com>
Tue, 2 Sep 2014 14:55:56 +0000 (16:55 +0200)
Thanks to Yves Mettier for pointing this out!

Fixes: #661
src/utils_rrdcreate.c

index a34e0da0103936de01b652996cb956b5d327f93a..5368059e57e06daac597d47cd4dc4a13a3a3d233 100644 (file)
@@ -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,