Blame SOURCES/0001-client-legacy-Fix-invalid-free.patch

55d511
From 2f7053f5fa9154437b9397cd204a38e2686107bc Mon Sep 17 00:00:00 2001
55d511
From: Christian Persch <chpe@src.gnome.org>
55d511
Date: Tue, 29 May 2018 10:47:22 +0200
55d511
Subject: [PATCH] client: legacy: Fix invalid free
55d511
55d511
Use g_free() for memory allocated with g_new().
55d511
55d511
https://gitlab.gnome.org/GNOME/gnome-terminal/issues/1
55d511
---
55d511
 src/terminal-options.c | 2 +-
55d511
 1 file changed, 1 insertion(+), 1 deletion(-)
55d511
55d511
diff --git a/src/terminal-options.c b/src/terminal-options.c
55d511
index d1e8a4a4ca48..83ead8909a52 100644
55d511
--- a/src/terminal-options.c
55d511
+++ b/src/terminal-options.c
55d511
@@ -1277,7 +1277,7 @@ terminal_options_free (TerminalOptions *options)
55d511
 
55d511
   g_clear_object (&options->profiles_list);
55d511
 
55d511
-  g_slice_free (TerminalOptions, options);
55d511
+  g_free (options);
55d511
 }
55d511
 
55d511
 static GOptionContext *
55d511
-- 
55d511
2.14.3
55d511