aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bittorrent.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-bittorrent.c')
-rw-r--r--epan/dissectors/packet-bittorrent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-bittorrent.c b/epan/dissectors/packet-bittorrent.c
index d3021a8832..6c5caccd06 100644
--- a/epan/dissectors/packet-bittorrent.c
+++ b/epan/dissectors/packet-bittorrent.c
@@ -156,13 +156,13 @@ static guint get_bittorrent_pdu_length(tvbuff_t *tvb, int offset)
of this TCP segment as "continuation data"; if this is
a real BitTorrent connection, we probably didn't get some
data before this segment. */
- DISSECTOR_ASSERT(!"Reassemble error?");
+ THROW(ReportedBoundsError);
return 0;
}
} else {
/* For now, we just give up, so we don't end up dissecting
a message with a bogus length. */
- DISSECTOR_ASSERT(!"Reassemble error?");
+ THROW(ReportedBoundsError);
return 0;
}
}