From: Sergio Villar Senin Date: Wed, 30 Apr 2008 17:31:16 +0000 (+0000) Subject: Fixed two small leaks added in the previous commit X-Git-Tag: git_migration_finished~1398 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=9e9270d41262032e6a6a6e35cdc0da60eda54a34 Fixed two small leaks added in the previous commit pmo-trunk-r4496 --- diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index e4f50be..9106f02 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -958,9 +958,11 @@ open_msg_cb (ModestMailOperation *mail_op, if (strcmp (from_header_email, from_email) == 0) { g_free (account); account = g_strdup (node->data); + g_free (from_email); g_free (from); break; } + g_free (from_email); g_free (from); } }