From 4f8d4082cb4659bab19fb33919100e75eb7e4139 Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Mon, 23 Mar 2009 13:26:09 +0000 Subject: [PATCH] Fixes NB#106346, added a missing fix pmo-trunk-r8292 --- src/hildon2/modest-msg-edit-window.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/hildon2/modest-msg-edit-window.c b/src/hildon2/modest-msg-edit-window.c index f68366a..6e5aed5 100644 --- a/src/hildon2/modest-msg-edit-window.c +++ b/src/hildon2/modest-msg-edit-window.c @@ -1784,9 +1784,11 @@ modest_msg_edit_window_get_format_state (ModestMsgEditWindow *self) { ModestMsgEditFormatState *format_state = NULL; ModestMsgEditWindowPrivate *priv; - WPTextBufferFormat *buffer_format = g_new0 (WPTextBufferFormat, 1); + WPTextBufferFormat *buffer_format; g_return_val_if_fail (MODEST_IS_MSG_EDIT_WINDOW (self), NULL); + + buffer_format = g_new0 (WPTextBufferFormat, 1); priv = MODEST_MSG_EDIT_WINDOW_GET_PRIVATE (self); wp_text_buffer_get_attributes (WP_TEXT_BUFFER (priv->text_buffer), buffer_format, TRUE); -- 1.7.9.5