mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 15:49:34 -05:00
fix uninitialized vars
This commit is contained in:
parent
7ffc723c40
commit
c5529b489b
1 changed files with 1 additions and 1 deletions
|
|
@ -232,7 +232,7 @@ LDAPDN_rewrite( LDAPDN *dn, unsigned flags )
|
||||||
AttributeDescription *ad;
|
AttributeDescription *ad;
|
||||||
slap_syntax_transform_func *transf = NULL;
|
slap_syntax_transform_func *transf = NULL;
|
||||||
MatchingRule *mr;
|
MatchingRule *mr;
|
||||||
struct berval bv;
|
struct berval bv = { 0, NULL };
|
||||||
|
|
||||||
assert( ava );
|
assert( ava );
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue