diff options
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 6 | ||||
-rw-r--r-- | composer/e-msg-composer-hdrs.c | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 1f53484000..ebc10d7f6f 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,9 @@ +2001-09-07 Dan Winship <danw@ximian.com> + + * e-msg-composer-hdrs.c (set_recipients_from_destv): Remove some + debugging messages that don't check for NULL strings and crash + Solaris. + 2001-09-06 Dan Winship <danw@ximian.com> * e-msg-composer.c (save): Have to specify a mode when using diff --git a/composer/e-msg-composer-hdrs.c b/composer/e-msg-composer-hdrs.c index 9e588ec18e..b542304717 100644 --- a/composer/e-msg-composer-hdrs.c +++ b/composer/e-msg-composer-hdrs.c @@ -706,10 +706,6 @@ set_recipients_from_destv (CamelMimeMessage *msg, camel_mime_message_set_recipients (msg, CAMEL_RECIPIENT_TYPE_BCC, bcc_addr); } - g_message (" To: (%d) [%s]", camel_address_length (CAMEL_ADDRESS (to_addr)), camel_address_format (CAMEL_ADDRESS (to_addr))); - g_message (" Cc: (%d) [%s]", camel_address_length (CAMEL_ADDRESS (cc_addr)), camel_address_format (CAMEL_ADDRESS (cc_addr))); - g_message ("Bcc: (%d) [%s]", camel_address_length (CAMEL_ADDRESS (bcc_addr)), camel_address_format (CAMEL_ADDRESS (bcc_addr))); - camel_object_unref (CAMEL_OBJECT (to_addr)); camel_object_unref (CAMEL_OBJECT (cc_addr)); camel_object_unref (CAMEL_OBJECT (bcc_addr)); |