summaryrefslogtreecommitdiff
path: root/print-ospf6.c
diff options
context:
space:
mode:
Diffstat (limited to 'print-ospf6.c')
-rw-r--r--print-ospf6.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/print-ospf6.c b/print-ospf6.c
index c94a7793..5c0b090d 100644
--- a/print-ospf6.c
+++ b/print-ospf6.c
@@ -574,6 +574,11 @@ ospf6_print_lsa(netdissect_options *ndo,
bytelen = ospf6_print_lsaprefix(ndo, tptr, lsa_length);
if (bytelen < 0)
goto trunc;
+ /*
+ * ospf6_print_lsaprefix() will return -1 if
+ * the length is too high, so this will not
+ * underflow.
+ */
lsa_length -= bytelen;
tptr += bytelen;
}
@@ -596,6 +601,11 @@ ospf6_print_lsa(netdissect_options *ndo,
bytelen = ospf6_print_lsaprefix(ndo, tptr, lsa_length);
if (bytelen < 0)
goto trunc;
+ /*
+ * ospf6_print_lsaprefix() will return -1 if
+ * the length is too high, so this will not
+ * underflow.
+ */
lsa_length -= bytelen;
tptr += bytelen;
@@ -657,6 +667,11 @@ ospf6_print_lsa(netdissect_options *ndo,
if (bytelen < 0)
goto trunc;
prefixes--;
+ /*
+ * ospf6_print_lsaprefix() will return -1 if
+ * the length is too high, so this will not
+ * underflow.
+ */
lsa_length -= bytelen;
tptr += bytelen;
}
@@ -685,6 +700,11 @@ ospf6_print_lsa(netdissect_options *ndo,
if (bytelen < 0)
goto trunc;
prefixes--;
+ /*
+ * ospf6_print_lsaprefix() will return -1 if
+ * the length is too high, so this will not
+ * underflow.
+ */
lsa_length -= bytelen;
tptr += bytelen;
}