mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
ITS#5490
This commit is contained in:
parent
05752bea50
commit
32b4634794
2 changed files with 2 additions and 1 deletions
1
CHANGES
1
CHANGES
|
|
@ -7,6 +7,7 @@ OpenLDAP 2.3.42 Engineering
|
|||
Fixed slapd delta-syncrepl resync (ITS#5378)
|
||||
Fixed slapd pagedresults stale state (ITS#5409)
|
||||
Fixed slapd-ldap connection handler (ITS#5404)
|
||||
Fixed slapo-accesslog null callback stack crash (ITS#5490)
|
||||
|
||||
OpenLDAP 2.3.41 Release (2008/02/19)
|
||||
Fixed slapd timestamp race condition (ITS#5370)
|
||||
|
|
|
|||
|
|
@ -915,7 +915,7 @@ static int accesslog_response(Operation *op, SlapReply *rs) {
|
|||
old = li->li_old;
|
||||
li->li_old = NULL;
|
||||
/* Disarm mod_cleanup */
|
||||
for ( cb = op->o_callback->sc_next; cb; cb = cb->sc_next ) {
|
||||
for ( cb = op->o_callback; cb; cb = cb->sc_next ) {
|
||||
if ( cb->sc_private == (void *)on ) {
|
||||
cb->sc_private = NULL;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue