mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
ITS#4423, fix sessionlog lower bound in playlog
This commit is contained in:
parent
a8f8dfe747
commit
608c85a9f0
@ -1346,7 +1346,7 @@ syncprov_playlog( Operation *op, SlapReply *rs, sessionlog *sl,
|
||||
* unlock the list mutex.
|
||||
*/
|
||||
for ( se=sl->sl_head; se; se=se->se_next ) {
|
||||
if ( ber_bvcmp( &se->se_csn, oldcsn ) < 0 ) continue;
|
||||
if ( ber_bvcmp( &se->se_csn, oldcsn ) <= 0 ) continue;
|
||||
if ( ber_bvcmp( &se->se_csn, ctxcsn ) > 0 ) break;
|
||||
if ( se->se_tag == LDAP_REQ_DELETE ) {
|
||||
j = i;
|
||||
|
Loading…
Reference in New Issue
Block a user