]> git.sur5r.net Git - openldap/commitdiff
ITS#1709 j was logged uninitialized
authorHoward Chu <hyc@openldap.org>
Fri, 5 Apr 2002 06:55:25 +0000 (06:55 +0000)
committerHoward Chu <hyc@openldap.org>
Fri, 5 Apr 2002 06:55:25 +0000 (06:55 +0000)
servers/slapd/back-bdb/attribute.c

index bf6505ebe2049d173b2ff4940406f16148c5901a..f0bfd306f23c0c6221f912922b22ab509557a019 100644 (file)
@@ -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;