Forgot to return the newly allocated msg.

2001-09-10    <NotZed@Ximian.com>

        * providers/imap/camel-imap-store.c (camel_imap_msg_new): Forgot
        to return the newly allocated msg.

svn path=/trunk/; revision=12729
This commit is contained in:
0
2001-09-10 15:48:46 +00:00
committed by Michael Zucci
parent def88f65db
commit f98d34d5d4
2 changed files with 7 additions and 0 deletions
+5
View File
@@ -1,3 +1,8 @@
2001-09-10 <NotZed@Ximian.com>
* providers/imap/camel-imap-store.c (camel_imap_msg_new): Forgot
to return the newly allocated msg.
2001-09-08 Not Zed <NotZed@Ximian.com>
* providers/local/camel-spool-summary.c (spool_summary_sync_full): Likewise.
+2
View File
@@ -195,6 +195,8 @@ CamelImapMsg *camel_imap_msg_new(void (*receive)(CamelImapStore *store, struct _
msg = g_malloc0(size);
msg->receive = receive;
msg->free = free;
return msg;
}
void camel_imap_msg_queue(CamelImapStore *store, CamelImapMsg *msg)