aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-ieee8023.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-ieee8023.c b/epan/dissectors/packet-ieee8023.c
index 89d1e14b25..5cba83a3cd 100644
--- a/epan/dissectors/packet-ieee8023.c
+++ b/epan/dissectors/packet-ieee8023.c
@@ -76,10 +76,10 @@ dissect_802_3(volatile int length, gboolean is_802_2, tvbuff_t *tvb,
next_tvb = tvb_new_subset(tvb, offset_after_length, captured_length, length);
/* Dissect the payload either as IPX or as an LLC frame.
- Catch BoundsError and ReportedBoundsError, so that if the
- reported length of "next_tvb" was reduced by some dissector
- before an exception was thrown, we can still put in an item
- for the trailer. */
+ Catch non-fatal exceptions, so that if the reported length
+ of "next_tvb" was reduced by some dissector before an
+ exception was thrown, we can still put in an item for
+ the trailer. */
saved_proto = pinfo->current_proto;
pd_save = pinfo->private_data;
TRY {