summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2013-11-17 15:57:51 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2013-11-17 15:57:51 +0000
commitd28beab7229a17d85d2e385d39831bfa32e44915 (patch)
tree7abbbff5d0b70993c02bdfa0d1e8fab5c202d923
parentaf081c78119d1f6b9b1beec28fcc615aeb830483 (diff)
downloadwireshark-d28beab7229a17d85d2e385d39831bfa32e44915.tar.gz
From Chris Bontje via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9435 :
SEL Fast Message bug fix for signed 16-bit integer fast meter messages svn path=/trunk/; revision=53398
-rw-r--r--epan/dissectors/packet-selfm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-selfm.c b/epan/dissectors/packet-selfm.c
index d491500714..41f1142d67 100644
--- a/epan/dissectors/packet-selfm.c
+++ b/epan/dissectors/packet-selfm.c
@@ -1120,7 +1120,8 @@ dissect_fmdata_frame(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, int of
proto_item *fmdata_item, *fmdata_ai_item=NULL, *fmdata_dig_item=NULL, *fmdata_ai_ch_item=NULL, *fmdata_dig_ch_item=NULL;
proto_tree *fmdata_tree, *fmdata_ai_tree=NULL, *fmdata_dig_tree=NULL, *fmdata_ai_ch_tree=NULL, *fmdata_dig_ch_tree=NULL;
guint8 len, i=0, j=0, ts_mon, ts_day, ts_year, ts_hour, ts_min, ts_sec;
- guint16 config_cmd, ts_msec, ai_int16val;
+ guint16 config_cmd, ts_msec;
+ gint16 ai_int16val;
gfloat ai_fpval, ai_sf_fp;
gdouble ai_fpd_val;
gboolean config_found = FALSE;