mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 03:29:35 -05:00
ITS#889: quick fix
This commit is contained in:
parent
e2ff92c6fc
commit
5941625eb7
1 changed files with 8 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue