mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-02-17 14:00:30 +08:00
Cleanup prev commit
This commit is contained in:
parent
577beaf982
commit
3f4243def9
@ -726,12 +726,12 @@ bdb_idl_insert_key(
|
||||
/* Delete all the records between lo and hi */
|
||||
for ( i=2; i<count; i++ ) {
|
||||
rc = cursor->c_get( cursor, &key2, &data, DB_NEXT_DUP | DB_RMW );
|
||||
if ( rc != 0 && rc != DB_NOTFOUND ) {
|
||||
if ( rc != 0 ) {
|
||||
err = "c_get next_dup";
|
||||
goto fail;
|
||||
}
|
||||
rc = cursor->c_del( cursor, 0 );
|
||||
if ( rc != 0 && rc != DB_NOTFOUND ) {
|
||||
if ( rc != 0 ) {
|
||||
err = "c_del range";
|
||||
goto fail;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user