Blame SOURCES/0001-ref-Fix-a-memory-leak.patch

c4d434
From 18a16227556ad0aa24f9b8c759d571fcc5cdb728 Mon Sep 17 00:00:00 2001
c4d434
From: Kalev Lember <klember@redhat.com>
c4d434
Date: Fri, 14 Jun 2019 12:30:57 +0200
c4d434
Subject: [PATCH] ref: Fix a memory leak
c4d434
c4d434
Closes: #2964
c4d434
Approved by: mwleeds
c4d434
---
c4d434
 common/flatpak-ref.c | 1 +
c4d434
 1 file changed, 1 insertion(+)
c4d434
c4d434
diff --git a/common/flatpak-ref.c b/common/flatpak-ref.c
c4d434
index 38554e97..6dacb19c 100644
c4d434
--- a/common/flatpak-ref.c
c4d434
+++ b/common/flatpak-ref.c
c4d434
@@ -82,6 +82,7 @@ flatpak_ref_finalize (GObject *object)
c4d434
   g_free (priv->arch);
c4d434
   g_free (priv->branch);
c4d434
   g_free (priv->commit);
c4d434
+  g_free (priv->collection_id);
c4d434
 
c4d434
   G_OBJECT_CLASS (flatpak_ref_parent_class)->finalize (object);
c4d434
 }
c4d434
-- 
c4d434
2.21.0
c4d434