2007-03-26 Matthew Barnes <mbarnes@redhat.com>
* camel-smtp-transport.c (smtp_auth):
Fix a couple memory leaks (#360807). Patch from Chris Heath.
svn path=/trunk/; revision=7669
+2007-03-26 Matthew Barnes <mbarnes@redhat.com>
+
+ * camel-smtp-transport.c (smtp_auth):
+ Fix a couple memory leaks (#360807). Patch from Chris Heath.
+
2006-06-15 Andre Klapper <a9016009@gmx.de>
* camel-smtp-transport.c:
goto lose;
}
+ g_free (respbuf);
camel_object_unref (sasl);
camel_operation_end (NULL);
camel_stream_write (transport->ostream, "*\r\n", 3);
respbuf = camel_stream_buffer_read_line (CAMEL_STREAM_BUFFER (transport->istream));
d(fprintf (stderr, "received: %s\n", respbuf ? respbuf : "(null)"));
+ g_free (respbuf);
lose:
if (!camel_exception_is_set (ex)) {