X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/abc8c2d61c65757011d9d32abb01cd1e51232f3a..1bcd37991fa57d9e966a6f96e7cbff59b16c28bd:/print-rx.c diff --git a/print-rx.c b/print-rx.c index 7dfa3ddb..4f019528 100644 --- a/print-rx.c +++ b/print-rx.c @@ -766,7 +766,6 @@ rx_cache_find(netdissect_options *ndo, const struct rx_header *rxh, } #define STROUT(MAX) { uint32_t _i; \ - ND_TCHECK_LEN(bp, sizeof(uint32_t)); \ _i = GET_BE_U_4(bp); \ if (_i > (MAX)) \ goto trunc; \ @@ -791,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); \