aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-waveagent.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2012-10-13 20:59:14 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2012-10-13 20:59:14 +0000
commitfa57420e74a69265e9e5473307188941f05dc955 (patch)
treeb331e0cb887ce5ffa4e59e92ff0cbfef3b8e1513 /epan/dissectors/packet-waveagent.c
parentf1939f944277f007552043dc03389384dd8b915e (diff)
Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7857 :
Fix an infinite loop in WaveAgent dissector svn path=/trunk/; revision=45523
Diffstat (limited to 'epan/dissectors/packet-waveagent.c')
-rw-r--r--epan/dissectors/packet-waveagent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-waveagent.c b/epan/dissectors/packet-waveagent.c
index 351d873bc7..11a87d2534 100644
--- a/epan/dissectors/packet-waveagent.c
+++ b/epan/dissectors/packet-waveagent.c
@@ -529,7 +529,7 @@ static void dissect_wa_payload(guint32 starting_offset, proto_item *parent_tree,
if (tag_len != 0) {
const guint8 *tag_data_ptr;
- guint8 isr;
+ guint32 isr;
tag_data_ptr = tvb_get_ptr (tvb, offset + 36, tag_len);