mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
abort if result code is negative
This commit is contained in:
parent
d385386279
commit
1626f722c5
1 changed files with 1 additions and 1 deletions
|
|
@ -421,7 +421,7 @@ slap_send_ldap_result( Operation *op, SlapReply *rs )
|
|||
const char *otext = rs->sr_text;
|
||||
BerVarray oref = rs->sr_ref;
|
||||
|
||||
assert( !LDAP_API_ERROR( rs->sr_err ) );
|
||||
assert( !LDAP_API_ERROR( rs->sr_err ) && ( rs->sr_err >= 0 ));
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( OPERATION, ENTRY,
|
||||
|
|
|
|||
Loading…
Reference in a new issue