aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_fp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2007-05-09 03:50:58 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2007-05-09 03:50:58 +0000
commit7576ed62bf3f259b5769df8f2b56617ef836a5b7 (patch)
tree84201aa5e38f1b68100fd72a5ad276ef50e9ebd8 /epan/dissectors/packet-umts_fp.c
parent56800ea6ab4c3e6be47dcc8238a3779a2221f634 (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). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21733 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-umts_fp.c')
-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);