Skip to content
Snippets Groups Projects
Commit f22250ba authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix a minor leak.

parent 2b3b074b
Branches
Tags
No related merge requests found
......@@ -555,6 +555,13 @@ ldap_int_sasl_bind(
}
if ( rc != LDAP_SUCCESS && rc != LDAP_SASL_BIND_IN_PROGRESS ) {
if( scred ) {
/* and server provided us with data? */
Debug( LDAP_DEBUG_TRACE,
"ldap_int_sasl_bind: rc=%d sasl=%d len=%ld\n",
rc, saslrc, scred->bv_len );
ber_bvfree( scred );
}
return ld->ld_errno;
}
......@@ -609,8 +616,6 @@ ldap_int_sasl_bind(
return ld->ld_errno = sasl_err2ldap( saslrc );
}
/* likely should add a quiet option */
if( flags != LDAP_SASL_QUIET ) {
saslrc = sasl_getprop( ctx, SASL_USERNAME, (void **) &data );
if( saslrc == SASL_OK && data && *data ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment