X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Fcompat%2Fdirectory-handle.cpp;h=5c8d28db9de6db30e95589cfa074edb76784961c;hb=64803277bbdbe0a943360d918298a48157d9da55;hp=5bfb4b9eee2a94c03af9ec4f94e1d4b840740e86;hpb=c922647daed3dd022be11980063b5fb816d8c091;p=lttng-tools.git diff --git a/src/common/compat/directory-handle.cpp b/src/common/compat/directory-handle.cpp index 5bfb4b9ee..5c8d28db9 100644 --- a/src/common/compat/directory-handle.cpp +++ b/src/common/compat/directory-handle.cpp @@ -5,13 +5,13 @@ * */ -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include -#include +#include #include #include @@ -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;