diff options
author | Milan Crha <mcrha@redhat.com> | 2009-02-12 18:32:23 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2009-02-12 18:32:23 +0800 |
commit | 73ece6ee4b8abc931609f770ccec7d566da7d40c (patch) | |
tree | ca323bc676221051bba927d4ccd73802c1fdd782 /composer/e-msg-composer.c | |
parent | 9cc64a2009458355ed1e404ca4e15ede10acd920 (diff) | |
download | gsoc2013-evolution-73ece6ee4b8abc931609f770ccec7d566da7d40c.tar.gz gsoc2013-evolution-73ece6ee4b8abc931609f770ccec7d566da7d40c.tar.zst gsoc2013-evolution-73ece6ee4b8abc931609f770ccec7d566da7d40c.zip |
** Fix for bug #567089
2009-02-12 Milan Crha <mcrha@redhat.com>
** Fix for bug #567089
* e-msg-composer.c: (get_signature_html):
Do not crash when no From set yet.
svn path=/trunk/; revision=37251
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index d13d799ab2..12a33cea4f 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -1294,12 +1294,17 @@ get_signature_html (EMsgComposer *composer) text = e_msg_composer_get_sig_file_content (signature->filename, format_html); } } else { + EAccount *account; EAccountIdentity *id; gchar *organization; gchar *address; gchar *name; - id = e_composer_header_table_get_account (table)->id; + account = e_composer_header_table_get_account (table); + if (!account) + return NULL; + + id = account->id; address = id->address ? camel_text_to_html (id->address, CONVERT_SPACES, 0) : NULL; name = id->name ? camel_text_to_html (id->name, CONVERT_SPACES, 0) : NULL; organization = id->organization ? camel_text_to_html (id->organization, CONVERT_SPACES, 0) : NULL; |