diff options
Diffstat (limited to 'mate-dictionary')
-rw-r--r-- | mate-dictionary/src/gdict-window.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mate-dictionary/src/gdict-window.c b/mate-dictionary/src/gdict-window.c index 067a2534..96168286 100644 --- a/mate-dictionary/src/gdict-window.c +++ b/mate-dictionary/src/gdict-window.c @@ -130,7 +130,6 @@ gdict_window_dispose (GObject *gobject) if (window->settings != NULL) { g_object_unref (window->settings); - window->settings = NULL; } @@ -189,6 +188,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); } |