mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-10 08:53:27 -05:00
ITS#1709 j was logged uninitialized
This commit is contained in:
parent
11bbd076a8
commit
ca4cbc4a49
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ bdb_attribute(
|
|||
struct bdb_op_info *boi = (struct bdb_op_info *) op->o_private;
|
||||
DB_TXN *txn = NULL;
|
||||
Entry *e;
|
||||
int i, j, rc;
|
||||
int i, j = 0, rc;
|
||||
Attribute *attr;
|
||||
BerVarray v;
|
||||
const char *entry_at_name = entry_at->ad_cname.bv_val;
|
||||
|
|
|
|||
Loading…
Reference in a new issue