aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-sasl-gssapi.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-02-26 04:11:07 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-02-26 04:11:07 +0800
commit6db6379e350eb77cd0b099bc97c43dee1a869ce3 (patch)
treeda6ce37ba1bf76be55c5471e8962c6a6fe4c58f5 /camel/camel-sasl-gssapi.c
parent82355d5100fddbfd0646e73db7d1105d75f44e0f (diff)
downloadgsoc2013-evolution-6db6379e350eb77cd0b099bc97c43dee1a869ce3.tar.gz
gsoc2013-evolution-6db6379e350eb77cd0b099bc97c43dee1a869ce3.tar.zst
gsoc2013-evolution-6db6379e350eb77cd0b099bc97c43dee1a869ce3.zip
Free the uids *after* reporting Complete, otherwise we get an FMR if our
2004-02-25 Jeffrey Stedfast <fejj@ximian.com> * camel-filter-driver.c (camel_filter_driver_filter_folder): Free the uids *after* reporting Complete, otherwise we get an FMR if our caller didn't pass in the uids. * camel-sasl-gssapi.c (gssapi_challenge): #ifdef out another gss_release_buffer() call as this function causes memory corruption if using Heimdal's implementation of Kerberos5. Yay Heimdal. svn path=/trunk/; revision=24872
Diffstat (limited to 'camel/camel-sasl-gssapi.c')
-rw-r--r--camel/camel-sasl-gssapi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/camel-sasl-gssapi.c b/camel/camel-sasl-gssapi.c
index 4f15c43821..c32a3583a2 100644
--- a/camel/camel-sasl-gssapi.c
+++ b/camel/camel-sasl-gssapi.c
@@ -297,7 +297,9 @@ gssapi_challenge (CamelSasl *sasl, GByteArray *token, CamelException *ex)
if ((((unsigned char *) outbuf.value)[0] & DESIRED_SECURITY_LAYER) != DESIRED_SECURITY_LAYER) {
camel_exception_set (ex, CAMEL_EXCEPTION_SERVICE_CANT_AUTHENTICATE,
_("Unsupported security layer."));
+#ifndef HAVE_HEIMDAL_KRB5
gss_release_buffer (&minor, &outbuf);
+#endif
return NULL;
}