mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 13:40:37 -05:00
fix zeroing out attribute values (should fix ITS#5311)
This commit is contained in:
parent
c890c96d13
commit
5ebb7ee175
1 changed files with 2 additions and 0 deletions
|
|
@ -260,6 +260,7 @@ monitor_subsys_thread_update(
|
|||
ber_bvarray_free( a->a_vals );
|
||||
a->a_vals = NULL;
|
||||
a->a_nvals = NULL;
|
||||
a->a_numvals = 0;
|
||||
}
|
||||
|
||||
i = 0;
|
||||
|
|
@ -292,6 +293,7 @@ monitor_subsys_thread_update(
|
|||
ber_bvarray_free( a->a_vals );
|
||||
a->a_vals = NULL;
|
||||
a->a_nvals = NULL;
|
||||
a->a_numvals = 0;
|
||||
}
|
||||
|
||||
i = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue