From 1fa77a87dc53451189525b79fff72a0de13be322 Mon Sep 17 00:00:00 2001 From: Francois-Xavier Le Bail Date: Wed, 30 Sep 2020 13:12:05 +0200 Subject: [PATCH] RX: Remove 1 now redundant ND_TCHECK_LEN(e, sizeof(uint64_t)) call It is redundant because it is identical to ND_TCHECK_8(e), followed by a GET_BE_U_8(e), same e, which do the bounds check. --- print-rx.c | 1 - 1 file changed, 1 deletion(-) diff --git a/print-rx.c b/print-rx.c index 3b7a623d..4f019528 100644 --- a/print-rx.c +++ b/print-rx.c @@ -790,7 +790,6 @@ rx_cache_find(netdissect_options *ndo, const struct rx_header *rxh, } #define UINT64OUT() { uint64_t _i; \ - ND_TCHECK_LEN(bp, sizeof(uint64_t)); \ _i = GET_BE_U_8(bp); \ bp += sizeof(uint64_t); \ ND_PRINT(" %" PRIu64, _i); \