summaryrefslogtreecommitdiff
path: root/plugins/wimax/msg_ulmap.c
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2008-07-24 08:46:13 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2008-07-24 08:46:13 +0000
commit9c3467745382bdee199dc7fc483df8c6db6dab0d (patch)
tree8f5d8629e18b7af79e81745b9ff1f20991b45380 /plugins/wimax/msg_ulmap.c
parentedbcca785f152f7b07465b2e1a7c251dd41f5657 (diff)
downloadwireshark-9c3467745382bdee199dc7fc483df8c6db6dab0d.tar.gz
Fix HARQ_ULMAP_IE decoder padding error (bug 2738).
From Frank Wang. svn path=/trunk/; revision=25815
Diffstat (limited to 'plugins/wimax/msg_ulmap.c')
-rw-r--r--plugins/wimax/msg_ulmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/wimax/msg_ulmap.c b/plugins/wimax/msg_ulmap.c
index b1369cf081..9376933e54 100644
--- a/plugins/wimax/msg_ulmap.c
+++ b/plugins/wimax/msg_ulmap.c
@@ -2039,7 +2039,7 @@ gint dissect_ulmap_ie( proto_tree *ie_tree, const guint8 *bufptr, gint offset, g
nibble += 2;
*/
- len = 4 + BYTE_TO_NIB(len); /* length in nibbles */
+ len = 3 + BYTE_TO_NIB(len); /* length in nibbles */
/* data table 290c 8.4.5.4.4.2 */
switch (ext2_uiuc) {