mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-19 21:32:58 -05:00
cleanup
This commit is contained in:
parent
f38e72b26c
commit
f8407435cc
2 changed files with 6 additions and 8 deletions
|
|
@ -196,7 +196,7 @@ int backend_startup_one(Backend *be)
|
|||
assert( be != NULL );
|
||||
|
||||
be->be_pending_csn_list = (struct be_pcl *)
|
||||
ch_calloc( 1, sizeof( struct be_pcl ));
|
||||
ch_calloc( 1, sizeof( struct be_pcl ) );
|
||||
|
||||
LDAP_TAILQ_INIT( be->be_pending_csn_list );
|
||||
|
||||
|
|
|
|||
|
|
@ -344,13 +344,11 @@ fe_op_modify( Operation *op, SlapReply *rs )
|
|||
goto cleanup;
|
||||
}
|
||||
|
||||
{
|
||||
rs->sr_err = slap_mods_obsolete_check( op, modlist,
|
||||
&rs->sr_text, textbuf, textlen );
|
||||
if ( rs->sr_err != LDAP_SUCCESS ) {
|
||||
send_ldap_result( op, rs );
|
||||
goto cleanup;
|
||||
}
|
||||
rs->sr_err = slap_mods_obsolete_check( op, modlist,
|
||||
&rs->sr_text, textbuf, textlen );
|
||||
if ( rs->sr_err != LDAP_SUCCESS ) {
|
||||
send_ldap_result( op, rs );
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
/* check for modify/increment support */
|
||||
|
|
|
|||
Loading…
Reference in a new issue