mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 01:59:38 -05:00
don't dereference NULL pointer
This commit is contained in:
parent
86005f581e
commit
fcedf5bf83
1 changed files with 1 additions and 1 deletions
|
|
@ -5245,7 +5245,7 @@ config_back_delete( Operation *op, SlapReply *rs )
|
|||
if ( last )
|
||||
rs->sr_matched = last->ce_entry->e_name.bv_val;
|
||||
rs->sr_err = LDAP_NO_SUCH_OBJECT;
|
||||
} if ( ce->ce_kids ) {
|
||||
} else if ( ce->ce_kids ) {
|
||||
rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
|
||||
} else if ( ce->ce_type == Cft_Overlay ){
|
||||
char *iptr;
|
||||
|
|
|
|||
Loading…
Reference in a new issue