mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
fix use of uninitialized var
This commit is contained in:
parent
42dadd5712
commit
6bf8b945dd
1 changed files with 1 additions and 1 deletions
|
|
@ -835,7 +835,7 @@ dn2entry_retry:
|
|||
struct berval matched_dn = BER_BVNULL;
|
||||
|
||||
if ( matched != NULL ) {
|
||||
BerVarray erefs;
|
||||
BerVarray erefs = NULL;
|
||||
|
||||
if ( ! access_allowed( op, matched,
|
||||
slap_schema.si_ad_entry,
|
||||
|
|
|
|||
Loading…
Reference in a new issue