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

ITS#889: quick fix

parent e2ff92c6
Branches
Tags
No related merge requests found
......@@ -662,9 +662,15 @@ ldap_int_sasl_external(
ber_len_t ssf )
{
int sc;
sasl_conn_t *ctx = ld->ld_defconn->lconn_sasl_ctx;
sasl_conn_t *ctx;
sasl_external_properties_t extprops;
if( ld->ld_defconn == NULL ) {
return LDAP_LOCAL_ERROR;
}
ctx = ld->ld_defconn->lconn_sasl_ctx;
if ( ctx == NULL ) {
return LDAP_LOCAL_ERROR;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment