X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fbuffer-registry.cpp;fp=src%2Fbin%2Flttng-sessiond%2Fbuffer-registry.cpp;h=7a446633b8f878cbd6cfaad67a2a07ee33dd281b;hp=ca7830a384d8dcca29537fc4e0c724f4216f9f7d;hb=64803277bbdbe0a943360d918298a48157d9da55;hpb=60f1b42d6280b6bd386abb726dca4fd3b31d8491 diff --git a/src/bin/lttng-sessiond/buffer-registry.cpp b/src/bin/lttng-sessiond/buffer-registry.cpp index ca7830a38..7a446633b 100644 --- a/src/bin/lttng-sessiond/buffer-registry.cpp +++ b/src/bin/lttng-sessiond/buffer-registry.cpp @@ -104,14 +104,14 @@ int buffer_reg_uid_create(uint64_t session_id, uint32_t bits_per_long, uid_t uid LTTNG_ASSERT(regp); - reg = (buffer_reg_uid *) zmalloc(sizeof(*reg)); + reg = zmalloc(); if (!reg) { PERROR("zmalloc buffer registry uid"); ret = -ENOMEM; goto error; } - reg->registry = (buffer_reg_session *) zmalloc(sizeof(struct buffer_reg_session)); + reg->registry = zmalloc(); if (!reg->registry) { PERROR("zmalloc buffer registry uid session"); ret = -ENOMEM; @@ -234,14 +234,14 @@ int buffer_reg_pid_create(uint64_t session_id, struct buffer_reg_pid **regp, LTTNG_ASSERT(regp); - reg = (buffer_reg_pid *) zmalloc(sizeof(*reg)); + reg = zmalloc(); if (!reg) { PERROR("zmalloc buffer registry pid"); ret = -ENOMEM; goto error; } - reg->registry = (buffer_reg_session *) zmalloc(sizeof(struct buffer_reg_session)); + reg->registry = zmalloc(); if (!reg->registry) { PERROR("zmalloc buffer registry pid session"); ret = -ENOMEM; @@ -371,7 +371,7 @@ int buffer_reg_channel_create(uint64_t key, struct buffer_reg_channel **regp) DBG3("Buffer registry channel create with key: %" PRIu64, key); - reg = (buffer_reg_channel *) zmalloc(sizeof(*reg)); + reg = zmalloc(); if (!reg) { PERROR("zmalloc buffer registry channel"); return -ENOMEM; @@ -401,7 +401,7 @@ int buffer_reg_stream_create(struct buffer_reg_stream **regp) DBG3("Buffer registry creating stream"); - reg = (buffer_reg_stream *) zmalloc(sizeof(*reg)); + reg = zmalloc(); if (!reg) { PERROR("zmalloc buffer registry stream"); return -ENOMEM;