fix uninitialized vars

This commit is contained in:
Howard Chu 2001-12-30 00:24:44 +00:00
parent 7ffc723c40
commit c5529b489b

View file

@ -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 );