mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 21:50:49 -05:00
fix uninitialized var
This commit is contained in:
parent
65c26598d5
commit
71d488c28f
1 changed files with 1 additions and 1 deletions
|
|
@ -2850,7 +2850,7 @@ add_syncrepl(
|
|||
ch_free( si->si_filterstr.bv_val );
|
||||
}
|
||||
if ( si_entry->si_attrs ) {
|
||||
int i;
|
||||
int i = 0;
|
||||
while ( si_entry->si_attrs[i] != NULL ) {
|
||||
ch_free( si_entry->si_attrs[i] );
|
||||
i++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue