Fix uninitialized variable.

This commit is contained in:
Mark Valence 2000-06-17 08:20:44 +00:00
parent 189b738c63
commit 638371ebe7

View 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;