X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Fuserspace-probe.cpp;h=99893b6432cfa687098f28f115e1798a66c61e27;hb=64803277bbdbe0a943360d918298a48157d9da55;hp=7eb4a6d91117e4632eea619090582a08000705c4;hpb=60f1b42d6280b6bd386abb726dca4fd3b31d8491;p=lttng-tools.git diff --git a/src/common/userspace-probe.cpp b/src/common/userspace-probe.cpp index 7eb4a6d91..99893b643 100644 --- a/src/common/userspace-probe.cpp +++ b/src/common/userspace-probe.cpp @@ -72,7 +72,7 @@ lttng_userspace_probe_location_lookup_method_function_elf_create(void) struct lttng_userspace_probe_location_lookup_method *ret = NULL; struct lttng_userspace_probe_location_lookup_method_elf *elf_method; - elf_method = (lttng_userspace_probe_location_lookup_method_elf *) zmalloc(sizeof(*elf_method)); + elf_method = zmalloc(); if (!elf_method) { PERROR("zmalloc"); goto end; @@ -90,7 +90,7 @@ lttng_userspace_probe_location_lookup_method_tracepoint_sdt_create(void) struct lttng_userspace_probe_location_lookup_method *ret = NULL; struct lttng_userspace_probe_location_lookup_method_sdt *sdt_method; - sdt_method = (lttng_userspace_probe_location_lookup_method_sdt *) zmalloc(sizeof(*sdt_method)); + sdt_method = zmalloc(); if (!sdt_method) { PERROR("zmalloc"); goto end; @@ -311,7 +311,7 @@ lttng_userspace_probe_location_function_create_no_check(const char *binary_path, goto error; } - location = (lttng_userspace_probe_location_function *) zmalloc(sizeof(*location)); + location = zmalloc(); if (!location) { PERROR("Error allocating userspace probe location"); goto error; @@ -448,7 +448,7 @@ lttng_userspace_probe_location_tracepoint_create_no_check(const char *binary_pat goto error; } - location = (lttng_userspace_probe_location_tracepoint *) zmalloc(sizeof(*location)); + location = zmalloc(); if (!location) { PERROR("zmalloc"); goto error; @@ -547,7 +547,7 @@ lttng_userspace_probe_location_lookup_method_function_elf_copy( LTTNG_ASSERT(lookup_method->type == LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF); - elf_method = (lttng_userspace_probe_location_lookup_method_elf *) zmalloc(sizeof(*elf_method)); + elf_method = zmalloc(); if (!elf_method) { PERROR("Error allocating ELF userspace probe lookup method"); goto error; @@ -574,7 +574,7 @@ lttng_userspace_probe_location_lookup_method_tracepoint_sdt_copy( LTTNG_ASSERT(lookup_method->type == LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT); - sdt_method = (lttng_userspace_probe_location_lookup_method_sdt *) zmalloc(sizeof(*sdt_method)); + sdt_method = zmalloc(); if (!sdt_method) { PERROR("zmalloc"); goto error;