From 4358219775374e5f8bd1286cff5bfb0641c96c7c Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Fri, 9 Nov 2007 12:57:10 +0000 Subject: [PATCH] * fix tiny mem leak pmo-trunk-r3685 --- src/maemo/modest-msg-edit-window.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/maemo/modest-msg-edit-window.c b/src/maemo/modest-msg-edit-window.c index 77cedb0..e7832fa 100644 --- a/src/maemo/modest-msg-edit-window.c +++ b/src/maemo/modest-msg-edit-window.c @@ -1498,6 +1498,7 @@ modest_msg_edit_window_free_msg_data (ModestMsgEditWindow *edit_window, g_free (data->to); g_free (data->cc); g_free (data->bcc); + g_free (data->from); g_free (data->subject); g_free (data->plain_body); g_free (data->html_body); -- 1.7.9.5