X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=liblttng-ht%2Flttng-ht.c;h=74e5ed4feb169cf803d90e7debea78b6c507722f;hp=608b3af10bdbd48180bc7f06fee98fa9e47553c4;hb=7fe5a50305da84bb64058c4721ff346c1b14f4ec;hpb=bec399405a4667411ae06bbbcbed678e42e93a30 diff --git a/liblttng-ht/lttng-ht.c b/liblttng-ht/lttng-ht.c index 608b3af10..74e5ed4fe 100644 --- a/liblttng-ht/lttng-ht.c +++ b/liblttng-ht/lttng-ht.c @@ -62,7 +62,8 @@ struct lttng_ht *lttng_ht_new(unsigned long size, int type) struct lttng_ht *ht; /* Test size */ - size != 0 ? : (size = DEFAULT_HT_SIZE); + if (!size) + size = DEFAULT_HT_SIZE; ht = zmalloc(sizeof(*ht)); if (ht == NULL) { @@ -160,7 +161,6 @@ void lttng_ht_lookup(struct lttng_ht *ht, void *key, { assert(ht); assert(ht->ht); - assert(key); cds_lfht_lookup(ht->ht, ht->hash_fct(key, HASH_SEED), ht->match_fct, key, &iter->iter);