]> www.fi.muni.cz Git - evince.git/commitdiff
Fix double free that cause crash.
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>
Sun, 30 Oct 2005 14:57:47 +0000 (14:57 +0000)
committerNickolay V. Shmyrev <nshmyrev@src.gnome.org>
Sun, 30 Oct 2005 14:57:47 +0000 (14:57 +0000)
* shell/ev-window.c: (ev_window_finalize):

Fix double free that cause crash.

ChangeLog
shell/ev-window.c

index a5f0566459cd8aaef9894f7b1f5fe40e53c3f39f..55b163bd782bca12688f5e778293c90ed00225a3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-10-30  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
+
+       * shell/ev-window.c: (ev_window_finalize):
+       
+       Fix double free that cause crash.
+
 2005-10-29  Bastien Nocera <hadess@hadess.net>
 
        * tiff/tiff-document.c: (tiff_document_load):
index d1fa8a2219e51795ff92969e5f8227fc38253670..692014444ecac920696c0fa1981d24ab1029cc80 100644 (file)
@@ -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);
 }