Skip to content
Snippets Groups Projects
Commit a8dbfd32 authored by Howard Chu's avatar Howard Chu
Browse files

Really fix ITS#2905

parent 778516cc
No related branches found
No related tags found
No related merge requests found
......@@ -265,9 +265,8 @@ static int bdb_tool_next_id(
} else if ( !hole ) {
unsigned i;
if ( e->e_id == NOID ) {
return DB_KEYEXIST;
}
e->e_id = ei->bei_id;
rc = DB_KEYEXIST;
for ( i=0; i<nholes; i++) {
if ( holes[i].id == e->e_id ) {
......@@ -276,6 +275,7 @@ static int bdb_tool_next_id(
for (j=i;j<nholes;j++) holes[j] = holes[j+1];
holes[j].id = 0;
nholes--;
rc = 0;
break;
} else if ( holes[i].id > e->e_id ) {
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment