Fix: invalid use of destructor in dynamic pointer array
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 18 Nov 2019 19:43:06 +0000 (14:43 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 18 Nov 2019 19:43:06 +0000 (14:43 -0500)
commit0186592a67a28417f1dabbb1790560d8cd1033d4
tree71c1c19a1cdacfe8fe2e9d85f26c5701a061efe8
parent1ad1103bedd3f87c3cbe151e1ef61fbaceaa0f4c
Fix: invalid use of destructor in dynamic pointer array

A dynamic pointer array is built on top of a dynamic array and uses
the dynamic array's internal "destructor" field to store the
user-specified destructor.

lttng_dynamic_pointer_array_remove_pointer currently uses
the dynamic array's remove_element directly which causes the
user destructor to be called with the underlying storage of the
pointer rather than with the pointer itself.

This change re-uses the same pattern as
lttng_dynamic_pointer_array_reset(), namely using the destructor
explicitly and setting it to NULL for the duration of the call to
the dynamic array API.

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/common/dynamic-array.c
src/common/dynamic-array.h
This page took 0.026214 seconds and 5 git commands to generate.