mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
Fix uninitialized variable.
This commit is contained in:
parent
189b738c63
commit
638371ebe7
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue