diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-09-29 10:53:47 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-09-29 10:53:47 +0800 |
commit | 338c81f70a92560970f7a6c542c38a3839cc748c (patch) | |
tree | 2af652794d0d795e55628e671acb0ad306bcf4c9 /camel/camel-transport.h | |
parent | ad08b9bda3baa61b53bba13b8df47978e3992fbb (diff) | |
download | gsoc2013-evolution-338c81f70a92560970f7a6c542c38a3839cc748c.tar.gz gsoc2013-evolution-338c81f70a92560970f7a6c542c38a3839cc748c.tar.zst gsoc2013-evolution-338c81f70a92560970f7a6c542c38a3839cc748c.zip |
Fixed some memory leaks. (camel_smtp_transport_init): Initialize
2000-09-28 Jeffrey Stedfast <fejj@helixcode.com>
* providers/smtp/camel-smtp-transport.c: Fixed some memory leaks.
(camel_smtp_transport_init): Initialize supports_8bit to FALSE.
(smtp_helo): If server supports 8bit, set supports_8bit to TRUE.
* camel-transport.h (struct _CamelTransport): Added variable
gboolean supports_8bit (we'll need this eventually? - see bugzilla
bug #53)
* providers/smtp/camel-smtp-transport.c
(smtp_get_email_addr_from_text): Ugh, no wonder people were
getting illegal seek warnings *sigh*. I guess I can only blame
myself for this one though :-(
svn path=/trunk/; revision=5631
Diffstat (limited to 'camel/camel-transport.h')
-rw-r--r-- | camel/camel-transport.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-transport.h b/camel/camel-transport.h index 0b66bd8eac..48ab0ea1ff 100644 --- a/camel/camel-transport.h +++ b/camel/camel-transport.h @@ -45,7 +45,8 @@ extern "C" { struct _CamelTransport { CamelService parent_object; - + + gboolean supports_8bit; }; |