Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-10-30 14:57:47 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-10-30 14:57:47 (GMT)
commit83fb195a6bc9e15c5002d73291b9f3c42b6b150a (patch)
treed09fed3759abebaf6d6255f142a88145481ae849
parentc9a10dd0e88b52b29e5ec73c1731c699a11b640f (diff)
Fix double free that cause crash.
* shell/ev-window.c: (ev_window_finalize): Fix double free that cause crash.
-rw-r--r--ChangeLog6
-rw-r--r--shell/ev-window.c1
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a5f0566..55b163b 100644
--- 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):
diff --git a/shell/ev-window.c b/shell/ev-window.c
index d1fa8a2..6920144 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);
}