From 6675a0ab659d55cbdb819f166d1948b74c9f41c7 Mon Sep 17 00:00:00 2001 From: Nehal J Wani Date: Thu, 24 Jul 2014 03:35:13 +0530 Subject: [PATCH] leaseshelper: avoid mem leak after storing lease entries Contents of existing lease file were being stored in a variable which was never freed. --- src/network/leaseshelper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/network/leaseshelper.c b/src/network/leaseshelper.c index e4b5283f8b..c8543a2dee 100644 --- a/src/network/leaseshelper.c +++ b/src/network/leaseshelper.c @@ -361,6 +361,7 @@ main(int argc, char **argv) VIR_FREE(pid_file); VIR_FREE(exptime); + VIR_FREE(lease_entries); VIR_FREE(custom_lease_file); virJSONValueFree(lease_new); virJSONValueFree(leases_array);