Fix a double-free on a picture gallery dispose (composer close)

This commit is contained in:
Milan Crha
2015-05-22 12:58:12 +02:00
parent 956a167f8d
commit e215735567

View File

@ -394,6 +394,7 @@ picture_gallery_dispose (GObject *object)
}
g_free (gallery->priv->path);
gallery->priv->path = NULL;
/* Chain up to parent's dispose() method. */
G_OBJECT_CLASS (e_picture_gallery_parent_class)->dispose (object);