X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Findex-allocator.cpp;h=1f7b3e05208d3cfb6fa60785f4db7218f57f7588;hb=64803277bbdbe0a943360d918298a48157d9da55;hp=7fe18eb1862cd41674b38c359d425de62f1365ad;hpb=60f1b42d6280b6bd386abb726dca4fd3b31d8491;p=lttng-tools.git diff --git a/src/common/index-allocator.cpp b/src/common/index-allocator.cpp index 7fe18eb18..1f7b3e052 100644 --- a/src/common/index-allocator.cpp +++ b/src/common/index-allocator.cpp @@ -32,7 +32,7 @@ struct lttng_index_allocator *lttng_index_allocator_create( { struct lttng_index_allocator *allocator = NULL; - allocator = (lttng_index_allocator *) zmalloc(sizeof(*allocator)); + allocator = zmalloc(); if (!allocator) { PERROR("Failed to allocate index allocator"); goto end; @@ -92,7 +92,7 @@ enum lttng_index_allocator_status lttng_index_allocator_release( LTTNG_ASSERT(idx < allocator->size); - index = (lttng_index *) zmalloc(sizeof(*index)); + index = zmalloc(); if (!index) { PERROR("Failed to allocate free index queue"); status = LTTNG_INDEX_ALLOCATOR_STATUS_ERROR;