diff options
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 6c225cdf49..dbde28f890 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -91,9 +91,14 @@ destroy (GtkObject *object) shell = E_SHELL (object); priv = shell->priv; - gtk_object_unref (GTK_OBJECT (priv->storage_set)); - gtk_object_unref (GTK_OBJECT (priv->shortcuts)); - gtk_object_unref (GTK_OBJECT (priv->folder_type_repository)); + if (priv->storage_set != NULL) + gtk_object_unref (GTK_OBJECT (priv->storage_set)); + + if (priv->shortcuts != NULL) + gtk_object_unref (GTK_OBJECT (priv->shortcuts)); + + if (priv->folder_type_repository != NULL) + gtk_object_unref (GTK_OBJECT (priv->folder_type_repository)); g_free (priv); |