aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-05-09 03:50:58 +0000
committerGuy Harris <guy@alum.mit.edu>2007-05-09 03:50:58 +0000
commit636807c1cef427bb87e1239956bbae4a168cc474 (patch)
tree84201aa5e38f1b68100fd72a5ad276ef50e9ebd8
parentbf55e2cf1d72719ed2a26f31deb66735e73eccba (diff)
Unless I've missed something, the number of subframes can be as many as
16 (4 bits, 0-origin, so that's 15 + 1 as the maximum). svn path=/trunk/; revision=21733
-rw-r--r--epan/dissectors/packet-umts_fp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c
index de54632896..4cbec992f6 100644
--- a/epan/dissectors/packet-umts_fp.c
+++ b/epan/dissectors/packet-umts_fp.c
@@ -1766,7 +1766,7 @@ void dissect_e_dch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *t
guint8 number_of_subframes;
guint8 cfn;
int n;
- struct subframe_info subframes[8];
+ struct subframe_info subframes[16];
/* Header CRC */
proto_tree_add_item(tree, hf_fp_edch_header_crc, tvb, offset, 2, FALSE);