mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
ITS#10170 accesslog: skip response if not fully initialized yet
This commit is contained in:
parent
6300d12718
commit
321a6b337f
1 changed files with 1 additions and 1 deletions
|
|
@ -2044,7 +2044,7 @@ accesslog_op_mod( Operation *op, SlapReply *rs )
|
|||
return SLAP_CB_CONTINUE;
|
||||
|
||||
/* can't do anything if logDB isn't open */
|
||||
if ( !SLAP_DBOPEN( li->li_db ))
|
||||
if ( !li->li_db || !SLAP_DBOPEN( li->li_db ))
|
||||
return SLAP_CB_CONTINUE;
|
||||
|
||||
logop = accesslog_op2logop( op );
|
||||
|
|
|
|||
Loading…
Reference in a new issue