From 55ab31e48242b94253a0825f3ff4420b70ca1347 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Tue, 21 Jun 2011 22:15:48 +0200 Subject: [PATCH] other: free backup ranges Fix to memory leak I overlooked earlier. Signed-off-by: Sami Kerola --- src/other.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/other.c b/src/other.c index 5e887e6..2cf3599 100644 --- a/src/other.c +++ b/src/other.c @@ -100,6 +100,7 @@ void clean_up(void) free(config.output_file); free(ranges); free(leases); + free(backups); free(touches); free(shared_networks); } -- 1.7.10.4