diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-04-14 10:32:15 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-04-14 10:32:15 +0800 |
commit | a5e6e0b5f3e06eee5726edfe276c5d3c65bb155c (patch) | |
tree | 34b54e0faaf87b1a4d9b8f26697bc14248bdb73f /shell/e-splash.c | |
parent | 2c05dbde2c25eeeee64f7694de14e9ee53bfe774 (diff) | |
download | gsoc2013-evolution-a5e6e0b5f3e06eee5726edfe276c5d3c65bb155c.tar.gz gsoc2013-evolution-a5e6e0b5f3e06eee5726edfe276c5d3c65bb155c.tar.zst gsoc2013-evolution-a5e6e0b5f3e06eee5726edfe276c5d3c65bb155c.zip |
Pull up fix from the 0-10 branch (chain the ::destroy handler for
ESplash to the parent class' ::destroy handler, thus fixing an
extremely stupid memory leak).
svn path=/trunk/; revision=9308
Diffstat (limited to 'shell/e-splash.c')
-rw-r--r-- | shell/e-splash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/e-splash.c b/shell/e-splash.c index 3900c8238e..055e2dc0d7 100644 --- a/shell/e-splash.c +++ b/shell/e-splash.c @@ -231,6 +231,8 @@ impl_destroy (GtkObject *object) gtk_idle_remove (priv->layout_idle_id); g_free (priv); + + (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } |