aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-24 08:46:13 +0000
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-24 08:46:13 +0000
commit81023318c86bd4e272c6674102839dba2ec06df8 (patch)
tree8f5d8629e18b7af79e81745b9ff1f20991b45380 /plugins
parent69ba13cadc53f04d18636bfca3316ca4e9149284 (diff)
Fix HARQ_ULMAP_IE decoder padding error (bug 2738).
From Frank Wang. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25815 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins')
-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) {