X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Fcompat%2Fdirectory-handle.cpp;h=5c8d28db9de6db30e95589cfa074edb76784961c;hb=64803277bbdbe0a943360d918298a48157d9da55;hp=ba5c6925c49feb3667f61e60ea0450507e19fe71;hpb=60f1b42d6280b6bd386abb726dca4fd3b31d8491;p=lttng-tools.git diff --git a/src/common/compat/directory-handle.cpp b/src/common/compat/directory-handle.cpp index ba5c6925c..5c8d28db9 100644 --- a/src/common/compat/directory-handle.cpp +++ b/src/common/compat/directory-handle.cpp @@ -147,7 +147,7 @@ struct lttng_directory_handle *lttng_directory_handle_create_from_dirfd( int dirfd) { int ret; - struct lttng_directory_handle *handle = (lttng_directory_handle *) zmalloc(sizeof(*handle)); + struct lttng_directory_handle *handle = zmalloc(); struct stat stat_buf; if (!handle) { @@ -405,7 +405,7 @@ end: static struct lttng_directory_handle *_lttng_directory_handle_create(char *path) { - struct lttng_directory_handle *handle = zmalloc(sizeof(*handle)); + struct lttng_directory_handle *handle = zmalloc(); if (!handle) { goto end; @@ -525,7 +525,7 @@ struct lttng_directory_handle *lttng_directory_handle_create_from_handle( handle_path_len, LTTNG_PATH_MAX); goto end; } - new_path = zmalloc(handle_path_len); + new_path = zmalloc(handle_path_len); if (!new_path) { PERROR("Failed to initialize directory handle"); goto end;