aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-12-28 16:22:54 +0100
committerMartin Kaiser <wireshark@kaiser.cx>2016-12-29 11:29:08 +0000
commit7f576aab364cd17bbfc4694aada88a7c6ea34ca0 (patch)
treebbd25055cc23566889cd5eee72703ba2533cf896 /epan
parent763d7f3012743091678e21200183472c2000119a (diff)
zvt: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang
Change-Id: I0f7a620e5fbdab4a4c6b62b1b7bc884073bc0f45 Reviewed-on: https://code.wireshark.org/review/19447 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-zvt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-zvt.c b/epan/dissectors/packet-zvt.c
index c4f677a8d0..5d91aee51b 100644
--- a/epan/dissectors/packet-zvt.c
+++ b/epan/dissectors/packet-zvt.c
@@ -545,7 +545,7 @@ dissect_zvt_tlv_container(tvbuff_t *tvb, gint offset,
{
gint offset_start;
gint total_len_bytes, seq_len;
- guint16 seq_max_len;
+ guint16 seq_max_len = 0;
offset_start = offset;