summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-ixiatrailer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ixiatrailer.c b/epan/dissectors/packet-ixiatrailer.c
index 3e98835ecf..d1fb700e90 100644
--- a/epan/dissectors/packet-ixiatrailer.c
+++ b/epan/dissectors/packet-ixiatrailer.c
@@ -83,9 +83,9 @@ dissect_ixiatrailer(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, voi
vec_t vec;
guint8 source;
- /* Need at least 5 bytes. TODO: should be 15? */
+ /* Need at least 15 bytes. */
tvblen = tvb_length(tvb);
- if (tvblen < 5) {
+ if (tvblen < 15) {
return 0;
}