diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-08-11 08:04:51 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-08-11 08:04:51 +0800 |
commit | a2ee1a5c0b5ccead0b3737c60008233a55781435 (patch) | |
tree | 844474be988af03b5e922472319aafd6e52cc22a | |
parent | 30a405f7dc389c35088a4b42f82bf117c21e4ea0 (diff) | |
download | gsoc2013-evolution-a2ee1a5c0b5ccead0b3737c60008233a55781435.tar gsoc2013-evolution-a2ee1a5c0b5ccead0b3737c60008233a55781435.tar.gz gsoc2013-evolution-a2ee1a5c0b5ccead0b3737c60008233a55781435.tar.bz2 gsoc2013-evolution-a2ee1a5c0b5ccead0b3737c60008233a55781435.tar.lz gsoc2013-evolution-a2ee1a5c0b5ccead0b3737c60008233a55781435.tar.xz gsoc2013-evolution-a2ee1a5c0b5ccead0b3737c60008233a55781435.tar.zst gsoc2013-evolution-a2ee1a5c0b5ccead0b3737c60008233a55781435.zip |
oops, take out the g_asserts
svn path=/trunk/; revision=11906
-rw-r--r-- | mail/mail-ops.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 5af610aee3..f300a3359f 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -507,7 +507,6 @@ mail_send_message(CamelMimeMessage *message, const char *destination, CamelFilte } xport = camel_session_get_transport (session, transport_url ? transport_url : destination, ex); - g_assert (CAMEL_OBJECT (xport)->ref_count == 1); g_free (transport_url); if (!xport) { g_free (sent_folder_uri); @@ -515,7 +514,6 @@ mail_send_message(CamelMimeMessage *message, const char *destination, CamelFilte } camel_transport_send (xport, CAMEL_MEDIUM (message), ex); - g_assert (CAMEL_OBJECT (xport)->ref_count == 1); camel_object_unref (CAMEL_OBJECT (xport)); if (camel_exception_is_set (ex)) { g_free (sent_folder_uri); |