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

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