Blame 0007-Fix-memory-leak-in-test_check_nt_time_string_lifetim.patch

461678c
From 3d312a6c89a88be444fb5ed768fbaa6155bf1cc9 Mon Sep 17 00:00:00 2001
461678c
From: Sumit Bose <sbose@redhat.com>
461678c
Date: Tue, 30 Jan 2018 14:39:46 +0100
461678c
Subject: [PATCH 07/23] Fix memory leak in test_check_nt_time_string_lifetime
461678c
461678c
The test added with 650e5d33ef31437a049fb454ad3dc5457c56abe7 introduced
461678c
a small memory leak.
461678c
461678c
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
461678c
---
461678c
 library/adutil.c | 1 +
461678c
 1 file changed, 1 insertion(+)
461678c
461678c
diff --git a/library/adutil.c b/library/adutil.c
461678c
index 21ccd27..cd40f45 100644
461678c
--- a/library/adutil.c
461678c
+++ b/library/adutil.c
461678c
@@ -501,6 +501,7 @@ test_check_nt_time_string_lifetime (void)
461678c
 			  (time (NULL) + 10 + AD_TO_UNIX_TIME_CONST) * 1000 * 1000 *10)
461678c
 		!= -1);
461678c
 	assert (!_adcli_check_nt_time_string_lifetime (time_str, 0));
461678c
+	free (time_str);
461678c
 
461678c
 	/* This test will fail some time after 2200AD as a reminder to reflect
461678c
 	 * why adcli is still needed. */
461678c
-- 
461678c
2.14.4
461678c