]> git.sur5r.net Git - openldap/commitdiff
ITS#1711 txn was uninitialized
authorHoward Chu <hyc@openldap.org>
Fri, 5 Apr 2002 06:54:39 +0000 (06:54 +0000)
committerHoward Chu <hyc@openldap.org>
Fri, 5 Apr 2002 06:54:39 +0000 (06:54 +0000)
servers/slapd/back-bdb/group.c

index e5c3bc8a97385c9846318c3afafff569f9415a86..70d1523be9529c2edee66ec126f3911cc62e9f3f 100644 (file)
@@ -35,7 +35,7 @@ bdb_group(
 {
        struct bdb_info *bdb = (struct bdb_info *) be->be_private;
        struct bdb_op_info *boi = (struct bdb_op_info *) op->o_private;
-       DB_TXN *txn;
+       DB_TXN *txn = NULL;
        Entry *e;
        int     rc = 1;
        Attribute *attr;