From: Mathieu Desnoyers Date: Thu, 22 Jun 2023 13:59:53 +0000 (-0400) Subject: Avoid calling caa_container_of on NULL pointer in cds_lfht macros X-Git-Url: https://git.liburcu.org/?a=commitdiff_plain;h=e58cdfcfc3884d003b7a0b097fd02c6969382edc;hp=e58cdfcfc3884d003b7a0b097fd02c6969382edc;p=urcu.git Avoid calling caa_container_of on NULL pointer in cds_lfht macros The cds_lfht_for_each_entry and cds_lfht_for_each_entry_duplicate macros would call caa_container_of() macro on NULL pointer. This is not a problem under normal circumstances as the check in the for loop fails and the loop-statement is not called with invalid (pos) value. However AddressSanitizer doesn't like that and complains about this: runtime error: applying non-zero offset 18446744073709551056 to null pointer Move the cds_lfht_iter_get_node(iter) != NULL from the cond-expression of the for loop into both init-clause and iteration-expression as conditional operator and check for (pos) value in the cond-expression instead. Introduce the cds_lfht_entry() macro to eliminate code duplication. Reported-by: Ondřej Surý Signed-off-by: Mathieu Desnoyers Change-Id: I9969c1e0bc0eefc8c90c0d8f17b2927f6a4feb2a ---