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.
This commit is contained in:
Francois-Xavier Le Bail 2020-09-30 13:12:05 +02:00
parent 3435ef98e5
commit 1fa77a87dc

View File

@ -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); \