From 06fa4ba1d6259f63a34268b9cac3de1ed464b935 Mon Sep 17 00:00:00 2001 From: rbuj Date: Sat, 1 Jan 2022 11:04:26 +0100 Subject: mate-dictionary: fix memory leak --- mate-dictionary/src/gdict-window.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mate-dictionary/src/gdict-window.c b/mate-dictionary/src/gdict-window.c index 1a37e42d..1d35c310 100644 --- a/mate-dictionary/src/gdict-window.c +++ b/mate-dictionary/src/gdict-window.c @@ -127,7 +127,6 @@ gdict_window_dispose (GObject *gobject) if (window->settings != NULL) { g_object_unref (window->settings); - window->settings = NULL; } @@ -186,6 +185,8 @@ gdict_window_dispose (GObject *gobject) window->busy_cursor = NULL; } + g_clear_pointer (&window->sidebar_page, g_free); + G_OBJECT_CLASS (gdict_window_parent_class)->dispose (gobject); } -- cgit v1.2.1