mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-16 20:06:06 -05:00
Fix uninit'd rc
This commit is contained in:
parent
98969cc28e
commit
9edea08357
1 changed files with 1 additions and 1 deletions
|
|
@ -433,7 +433,7 @@ int bdb_index_recrun(
|
|||
{
|
||||
IndexRec *ir;
|
||||
AttrList *al;
|
||||
int i, rc;
|
||||
int i, rc = 0;
|
||||
|
||||
for (i=base; i<bdb->bi_nattrs; i+=slap_tool_thread_max) {
|
||||
ir = ir0 + i;
|
||||
|
|
|
|||
Loading…
Reference in a new issue