X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Funbind.c;h=42277bb6f11eb377ff20b43c5a9e86837af0838a;hb=1d841e47c877842433dc11aaec9da36191fed960;hp=fba3a5ffb35936c501c5c1dfc03a73b2caadaedf;hpb=73acecaf0fd4fe4568e2287791d7c791d5a9c406;p=openldap diff --git a/libraries/libldap/unbind.c b/libraries/libldap/unbind.c index fba3a5ffb3..42277bb6f1 100644 --- a/libraries/libldap/unbind.c +++ b/libraries/libldap/unbind.c @@ -1,7 +1,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2005 The OpenLDAP Foundation. + * Copyright 1998-2008 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -15,16 +15,6 @@ /* Portions Copyright (c) 1990 Regents of the University of Michigan. * All rights reserved. */ -/* Portions Copyright (C) The Internet Society (1997) - * ASN.1 fragments are from RFC 2251; see RFC for full legal notices. - */ - -/* An Unbind Request looks like this: - * - * UnbindRequest ::= NULL - * - * and has no response. - */ #include "portable.h" @@ -37,6 +27,13 @@ #include "ldap-int.h" +/* An Unbind Request looks like this: + * + * UnbindRequest ::= [APPLICATION 2] NULL + * + * and has no response. (Source: RFC 4511) + */ + int ldap_unbind_ext( LDAP *ld, @@ -106,6 +103,11 @@ ldap_ld_free( next = lm->lm_next; ldap_msgfree( lm ); } + + if ( ld->ld_abandoned != NULL ) { + LDAP_FREE( ld->ld_abandoned ); + ld->ld_abandoned = NULL; + } #ifdef LDAP_R_COMPILE ldap_pvt_thread_mutex_unlock( &ld->ld_res_mutex ); #endif @@ -125,11 +127,6 @@ ldap_ld_free( ld->ld_referrals = NULL; } - if ( ld->ld_abandoned != NULL ) { - LDAP_FREE( ld->ld_abandoned ); - ld->ld_abandoned = NULL; - } - if ( ld->ld_selectinfo != NULL ) { ldap_free_select_info( ld->ld_selectinfo ); ld->ld_selectinfo = NULL; @@ -147,16 +144,6 @@ ldap_ld_free( } #endif - if ( ld->ld_options.ldo_tm_api != NULL ) { - LDAP_FREE( ld->ld_options.ldo_tm_api ); - ld->ld_options.ldo_tm_api = NULL; - } - - if ( ld->ld_options.ldo_tm_net != NULL ) { - LDAP_FREE( ld->ld_options.ldo_tm_net ); - ld->ld_options.ldo_tm_net = NULL; - } - #ifdef HAVE_CYRUS_SASL if ( ld->ld_options.ldo_def_sasl_mech != NULL ) { LDAP_FREE( ld->ld_options.ldo_def_sasl_mech ); @@ -179,6 +166,10 @@ ldap_ld_free( } #endif +#ifdef HAVE_TLS + ldap_int_tls_destroy( &ld->ld_options ); +#endif + if ( ld->ld_options.ldo_sctrls != NULL ) { ldap_controls_free( ld->ld_options.ldo_sctrls ); ld->ld_options.ldo_sctrls = NULL; @@ -194,6 +185,7 @@ ldap_ld_free( #ifdef LDAP_R_COMPILE ldap_pvt_thread_mutex_destroy( &ld->ld_req_mutex ); ldap_pvt_thread_mutex_destroy( &ld->ld_res_mutex ); + ldap_pvt_thread_mutex_destroy( &ld->ld_conn_mutex ); #endif #ifndef NDEBUG LDAP_TRASH(ld); @@ -256,9 +248,8 @@ ldap_send_unbind( ld->ld_errno = LDAP_SUCCESS; /* send the message */ - if ( ber_flush( sb, ber, 1 ) == -1 ) { + if ( ber_flush2( sb, ber, LBER_FLUSH_FREE_ALWAYS ) == -1 ) { ld->ld_errno = LDAP_SERVER_DOWN; - ber_free( ber, 1 ); } return( ld->ld_errno );