X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=libraries%2Flibldap%2Funbind.c;h=42277bb6f11eb377ff20b43c5a9e86837af0838a;hb=1d841e47c877842433dc11aaec9da36191fed960;hp=ec4083b5776cb27398cb0cdad907a709b8912ce2;hpb=d18277eac91d35484c5b4e5db83000f8dceff222;p=openldap diff --git a/libraries/libldap/unbind.c b/libraries/libldap/unbind.c index ec4083b577..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-2006 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,7 +103,7 @@ ldap_ld_free( next = lm->lm_next; ldap_msgfree( lm ); } - + if ( ld->ld_abandoned != NULL ) { LDAP_FREE( ld->ld_abandoned ); ld->ld_abandoned = 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 ); @@ -261,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 );