diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-09 13:30:37 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-09 13:30:37 +0800 |
commit | e7697db4fc1f4c90e74fab18dd6432f144b53cdd (patch) | |
tree | a67eab05308d0ab27cd22c4ac296b718622c3b71 /mail/mail-format.c | |
parent | 5bdcadd4cf57f4f9ee405a33daf7a3f91e1f6bf1 (diff) | |
download | gsoc2013-evolution-e7697db4fc1f4c90e74fab18dd6432f144b53cdd.tar.gz gsoc2013-evolution-e7697db4fc1f4c90e74fab18dd6432f144b53cdd.tar.zst gsoc2013-evolution-e7697db4fc1f4c90e74fab18dd6432f144b53cdd.zip |
Fixed some warnings.
2000-08-09 Christopher James Lahey <clahey@helixcode.com>
* mail-display.c, mail-format.c, mail-ops.c: Fixed some warnings.
* message-list.c: Fix the call to e_popup_menu_run to match the
new signature.
svn path=/trunk/; revision=4634
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index e90dc50826..a96619631f 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1047,7 +1047,8 @@ handle_multipart_encrypted (CamelMimePart *part, const char *mime_type, CamelDataWrapper *wrapper = camel_medium_get_content_object (CAMEL_MEDIUM (part)); CamelMultipart *mp; - char *ciphertext, *passphrase, *plaintext; + char *ciphertext, *passphrase; + char *plaintext = NULL; CamelException ex; g_return_val_if_fail (CAMEL_IS_MULTIPART (wrapper), FALSE); |