mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-07 23:51:21 -05:00
Fix prev commit
This commit is contained in:
parent
ba7ee0e16c
commit
7cec659d74
1 changed files with 3 additions and 1 deletions
|
|
@ -3029,8 +3029,10 @@ pcache_op_search(
|
|||
slap_callback **scp;
|
||||
for ( scp = &op->o_callback; *scp != NULL;
|
||||
scp = &(*scp)->sc_next ) {
|
||||
if ( (*scp)->sc_next == &cb )
|
||||
if ( (*scp)->sc_next == &cb ) {
|
||||
*scp = cb.sc_next;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue