From 050e77588502209897e9b0f456d762082a9a3041 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 26 Nov 2014 12:34:26 -0500 Subject: [PATCH] Fix: rculfhash: use zmalloc() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Follow lttng-tools rules. Signed-off-by: Mathieu Desnoyers Signed-off-by: Jérémie Galarneau --- src/common/hashtable/rculfhash.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/common/hashtable/rculfhash.c b/src/common/hashtable/rculfhash.c index ee09afd1b..ff7e68104 100644 --- a/src/common/hashtable/rculfhash.c +++ b/src/common/hashtable/rculfhash.c @@ -278,6 +278,8 @@ #include "rculfhash-internal.h" #include "urcu-flavor.h" +#include + /* * We need to lock pthread exit, which deadlocks __nptl_setxid in the runas * clone. This work-around will be allowed to be removed when runas.c gets @@ -1981,7 +1983,7 @@ void __cds_lfht_resize_lazy_launch(struct cds_lfht *ht) uatomic_dec(&ht->in_progress_resize); return; } - work = malloc(sizeof(*work)); + work = zmalloc(sizeof(*work)); if (work == NULL) { dbg_printf("error allocating resize work, bailing out\n"); uatomic_dec(&ht->in_progress_resize); -- 2.34.1