From 9e9270d41262032e6a6a6e35cdc0da60eda54a34 Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Wed, 30 Apr 2008 17:31:16 +0000 Subject: [PATCH] Fixed two small leaks added in the previous commit pmo-trunk-r4496 --- src/modest-ui-actions.c | 2 ++ 1 file changed, 2 insertions(+) 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); } } -- 1.7.9.5