diff options
Diffstat (limited to 'composer/e-msg-composer-attachment.c')
-rw-r--r-- | composer/e-msg-composer-attachment.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/composer/e-msg-composer-attachment.c b/composer/e-msg-composer-attachment.c index 1c88e7a68f..a279422b93 100644 --- a/composer/e-msg-composer-attachment.c +++ b/composer/e-msg-composer-attachment.c @@ -78,8 +78,6 @@ finalise(GObject *object) camel_object_unref (attachment->body); if (attachment->pixbuf_cache != NULL) g_object_unref (attachment->pixbuf_cache); - - G_OBJECT_CLASS (parent_class)->finalize (object); } else { if (attachment->handle) gnome_vfs_async_cancel(attachment->handle); @@ -88,6 +86,8 @@ finalise(GObject *object) if (attachment->description) g_free (attachment->description); } + + G_OBJECT_CLASS (parent_class)->finalize (object); } |