mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-01 04:29:35 -05:00
ITS#2744
This commit is contained in:
parent
887ef60ea9
commit
bcb4529d9d
1 changed files with 6 additions and 0 deletions
|
|
@ -94,6 +94,12 @@ slap_graduate_commit_csn( Operation *op )
|
|||
{
|
||||
struct slap_csn_entry *csne = NULL;
|
||||
|
||||
if ( op == NULL )
|
||||
return;
|
||||
|
||||
if ( op->o_bd == NULL )
|
||||
return;
|
||||
|
||||
ldap_pvt_thread_mutex_lock( &op->o_bd->be_pcl_mutex );
|
||||
|
||||
LDAP_TAILQ_FOREACH( csne, &op->o_bd->be_pending_csn_list, csn_link ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue