From: Sergio Villar Senin Date: Mon, 23 Mar 2009 13:26:09 +0000 (+0000) Subject: Fixes NB#106346, added a missing fix X-Git-Tag: git_migration_finished~225 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=4f8d4082cb4659bab19fb33919100e75eb7e4139;hp=c73ea062888eb02916f138f75a92945f1047dd02 Fixes NB#106346, added a missing fix pmo-trunk-r8292 --- 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);