Blame SOURCES/0008-print-Free-temporary-col-variable.patch

73b847
From 14a41bdd485d484146a0a102d142239c2cb8a245 Mon Sep 17 00:00:00 2001
73b847
From: Benjamin Berg <bberg@redhat.com>
73b847
Date: Mon, 25 Nov 2019 18:40:59 +0100
73b847
Subject: [PATCH 008/181] print: Free temporary col variable
73b847
73b847
The variable was leaked during serialization. Free it.
73b847
---
73b847
 libfprint/fp-print.c | 1 +
73b847
 1 file changed, 1 insertion(+)
73b847
73b847
diff --git a/libfprint/fp-print.c b/libfprint/fp-print.c
73b847
index 644370d..592be14 100644
73b847
--- a/libfprint/fp-print.c
73b847
+++ b/libfprint/fp-print.c
73b847
@@ -921,6 +921,7 @@ fp_print_serialize (FpPrint *print,
73b847
                                                                   xyt->nrows,
73b847
                                                                   sizeof (col[0])));
73b847
           g_variant_builder_close (&nested);
73b847
+          g_free (col);
73b847
         }
73b847
 
73b847
       g_variant_builder_close (&nested);
73b847
-- 
73b847
2.24.1
73b847