mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#9343 Fix uninitialised variable
This commit is contained in:
parent
14d47146b0
commit
9d90f55c83
1 changed files with 1 additions and 1 deletions
|
|
@ -1641,7 +1641,7 @@ ppolicy_rule_ldmove( CfEntryInfo *ce, Operation *op, SlapReply *rs,
|
|||
slap_overinst *on = (slap_overinst *)ce->ce_bi;
|
||||
pp_info *pi = (pp_info *)on->on_bi.bi_private;
|
||||
policy_rule *pr = ce->ce_private, **prp;
|
||||
int i;
|
||||
int i = 0;
|
||||
|
||||
for ( prp = &pi->policy_rules; *prp != pr; prp = &(*prp)->next, i++ )
|
||||
/* Find removal point */;
|
||||
|
|
|
|||
Loading…
Reference in a new issue