From: Mark Valence Date: Sat, 17 Jun 2000 08:20:44 +0000 (+0000) Subject: Fix uninitialized variable. X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~2599 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=638371ebe7cbf1b06342e3e1bb975872761d18eb;p=openldap Fix uninitialized variable. --- diff --git a/servers/slapd/acl.c b/servers/slapd/acl.c index 562eb18d55..cc5882a58a 100644 --- a/servers/slapd/acl.c +++ b/servers/slapd/acl.c @@ -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;