From: Nickolay V. Shmyrev Date: Sun, 30 Oct 2005 14:57:47 +0000 (+0000) Subject: Fix double free that cause crash. X-Git-Tag: EVINCE_0_5_0~95 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=83fb195a6bc9e15c5002d73291b9f3c42b6b150a;p=evince.git Fix double free that cause crash. * shell/ev-window.c: (ev_window_finalize): Fix double free that cause crash. --- diff --git a/ChangeLog b/ChangeLog index a5f05664..55b163bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-10-30 Nickolay V. Shmyrev + + * shell/ev-window.c: (ev_window_finalize): + + Fix double free that cause crash. + 2005-10-29 Bastien Nocera * tiff/tiff-document.c: (tiff_document_load): diff --git a/shell/ev-window.c b/shell/ev-window.c index d1fa8a22..69201444 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -2716,7 +2716,6 @@ ev_window_finalize (GObject *object) g_list_free (windows); } - g_list_free (windows); G_OBJECT_CLASS (ev_window_parent_class)->finalize (object); }