From: Jérémie Galarneau Date: Mon, 27 Aug 2018 20:30:03 +0000 (-0400) Subject: Clean-up: location lookup destroy can be type-agnostic X-Git-Tag: v2.11.0-rc1~59 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=5d21f1435f208a26dee82e16e3f28df43e5df318 Clean-up: location lookup destroy can be type-agnostic Signed-off-by: Jérémie Galarneau --- diff --git a/src/common/userspace-probe.c b/src/common/userspace-probe.c index 89066bf05..ac26a0c47 100644 --- a/src/common/userspace-probe.c +++ b/src/common/userspace-probe.c @@ -38,26 +38,7 @@ void lttng_userspace_probe_location_lookup_method_destroy( return; } - switch (lookup_method->type) { - case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF: - { - struct lttng_userspace_probe_location_lookup_method_elf *elf_method = - container_of(lookup_method, - struct lttng_userspace_probe_location_lookup_method_elf, parent); - free(elf_method); - break; - } - case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT: - { - struct lttng_userspace_probe_location_lookup_method_sdt *sdt_method = - container_of(lookup_method, - struct lttng_userspace_probe_location_lookup_method_sdt, parent); - free(sdt_method); - break; - } - default: - break; - } + free(lookup_method); } struct lttng_userspace_probe_location_lookup_method *