X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Fuserspace-probe.c;h=169bc99debb6bef714faa75ebd0957e6daff888b;hb=24cfac94e15895ca56dc4cfb56645bc88c996afe;hp=e764d137b9f3b8c8c7b973a1a3787c84986ccc9e;hpb=d7ee7196fb236c616cc64de0486cf8d659e235a2;p=lttng-tools.git diff --git a/src/common/userspace-probe.c b/src/common/userspace-probe.c index e764d137b..169bc99de 100644 --- a/src/common/userspace-probe.c +++ b/src/common/userspace-probe.c @@ -276,6 +276,7 @@ lttng_userspace_probe_location_tracepoint_create_no_check(const char *binary_pat error: free(probe_name_copy); free(provider_name_copy); + free(binary_path_copy); if (binary_fd >= 0) { if (close(binary_fd)) { PERROR("Error closing binary fd in error path"); @@ -1105,12 +1106,14 @@ int lttng_userspace_probe_location_function_create_from_buffer( function_name = lttng_strndup(function_name_src, LTTNG_SYMBOL_NAME_LEN); if (!function_name) { PERROR("lttng_strndup"); + ret = -LTTNG_ERR_NOMEM; goto end; } binary_path = lttng_strndup(binary_path_src, LTTNG_PATH_MAX); if (!binary_path) { PERROR("lttng_strndup"); + ret = -LTTNG_ERR_NOMEM; goto end; }