aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-09-06 10:13:20 +0200
committerMartin Kaiser <wireshark@kaiser.cx>2016-09-06 10:19:02 +0000
commitc8de455f4bcab0c560ec74bc0c1d3c46dad07270 (patch)
tree94c09cc7653af11e0363e73b35ee735dd1546831
parent27d522dad3a052e75ea0c51c465d02cf9dcc8e96 (diff)
zvt: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang
Change-Id: I68b4fa08a7f65b92e56a6e72a6bb113e72ee33da Reviewed-on: https://code.wireshark.org/review/17524 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
-rw-r--r--epan/dissectors/packet-zvt.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-zvt.c b/epan/dissectors/packet-zvt.c
index 3bd01535bb..0d371788c9 100644
--- a/epan/dissectors/packet-zvt.c
+++ b/epan/dissectors/packet-zvt.c
@@ -504,7 +504,6 @@ static void dissect_zvt_init(
proto_tree *tree, zvt_transaction_t *zvt_trans _U_)
{
proto_tree_add_item(tree, hf_zvt_pwd, tvb, offset, 3, ENC_NA);
- offset += 3;
}