aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-csm-encaps.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-08-13 18:49:57 +0000
committerGerald Combs <gerald@wireshark.org>2005-08-13 18:49:57 +0000
commit078df6ca6ccbfbf99d48e9d832f91d4fee1cc197 (patch)
tree881b91005b558106c81dfe6e7f9f4d090f718308 /epan/dissectors/packet-csm-encaps.c
parent5030bf580c9242f948524ddd894fc1f98490df0a (diff)
Fix another infinite loop found by randpkt.
svn path=/trunk/; revision=15339
Diffstat (limited to 'epan/dissectors/packet-csm-encaps.c')
-rw-r--r--epan/dissectors/packet-csm-encaps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-csm-encaps.c b/epan/dissectors/packet-csm-encaps.c
index 7229c989c5..0c192fd677 100644
--- a/epan/dissectors/packet-csm-encaps.c
+++ b/epan/dissectors/packet-csm-encaps.c
@@ -231,8 +231,8 @@ dissect_csm_encaps(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree *csm_encaps_tree = NULL;
proto_tree *csm_encaps_control_tree = NULL;
guint16 function_code, channel, class_type;
- guint8 control, type, sequence, length;
- guint8 i;
+ guint control, type, sequence, length;
+ guint i;
gboolean show_error_param= FALSE;
gchar *str_function_name;