From: Francis Deslauriers Date: Fri, 9 Feb 2018 21:56:49 +0000 (-0500) Subject: Fix: calling ht_{hash, match}_enum with wrong argument X-Git-Tag: v2.10.5~8 X-Git-Url: http://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=0038282925d39659a81f000762a2e0ecec323066 Fix: calling ht_{hash, match}_enum with wrong argument ht_hash_enum and ht_match_enum are currently called with the address of the pointer to a ust_registry_enum rather than the expected pointer to a ust_registry_enum. This means that those function calls would end up using garbage for hashing and comparing. Signed-off-by: Francis Deslauriers Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng-sessiond/ust-registry.c b/src/bin/lttng-sessiond/ust-registry.c index 61b5c59f2..0c944a73b 100644 --- a/src/bin/lttng-sessiond/ust-registry.c +++ b/src/bin/lttng-sessiond/ust-registry.c @@ -558,8 +558,8 @@ struct ust_registry_enum * struct lttng_ht_iter iter; cds_lfht_lookup(session->enums->ht, - ht_hash_enum((void *) ®_enum_lookup, lttng_ht_seed), - ht_match_enum, ®_enum_lookup, &iter.iter); + ht_hash_enum((void *) reg_enum_lookup, lttng_ht_seed), + ht_match_enum, reg_enum_lookup, &iter.iter); node = lttng_ht_iter_get_node_str(&iter); if (!node) { goto end;