summaryrefslogtreecommitdiff
path: root/print-hncp.c
diff options
context:
space:
mode:
Diffstat (limited to 'print-hncp.c')
-rw-r--r--print-hncp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/print-hncp.c b/print-hncp.c
index f6168fa6..559c7032 100644
--- a/print-hncp.c
+++ b/print-hncp.c
@@ -614,7 +614,7 @@ hncp_print_rec(netdissect_options *ndo,
case HNCP_DELEGATED_PREFIX: {
int l;
- if (bodylen < 9 || bodylen < 9 + (value[8] + 7) / 8) {
+ if (bodylen < 9 || bodylen < 9 + (EXTRACT_U_1(value + 8) + 7) / 8) {
ND_PRINT((ndo, " %s", istr));
break;
}
@@ -725,7 +725,7 @@ hncp_print_rec(netdissect_options *ndo,
case HNCP_ASSIGNED_PREFIX: {
uint8_t prty;
int l;
- if (bodylen < 6 || bodylen < 6 + (value[5] + 7) / 8) {
+ if (bodylen < 6 || bodylen < 6 + (EXTRACT_U_1(value + 5) + 7) / 8) {
ND_PRINT((ndo, " %s", istr));
break;
}