]> git.sur5r.net Git - openldap/commitdiff
Fix uninitialized variable.
authorMark Valence <mrv@openldap.org>
Sat, 17 Jun 2000 08:20:44 +0000 (08:20 +0000)
committerMark Valence <mrv@openldap.org>
Sat, 17 Jun 2000 08:20:44 +0000 (08:20 +0000)
servers/slapd/acl.c

index 562eb18d55dfb510d12deb7e6971c4cdffc28433..cc5882a58a18e745e162deb5b037722c93d006da 100644 (file)
@@ -532,7 +532,7 @@ acl_mask(
                if ( b->a_dn_at != NULL && op->o_ndn != NULL ) {
                        Attribute       *at;
                        struct berval   bv;
-                       int match;
+                       int match = 0;
                        const char *text;
                        const char *desc = b->a_dn_at->ad_cname->bv_val;