mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
fix zeroing out attribute values (should fix ITS#5311)
This commit is contained in:
parent
c890c96d13
commit
5ebb7ee175
@ -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 New Issue
Block a user