summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-skinny.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-03-17 19:24:34 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-03-17 19:24:34 +0000
commitedcedbfed3bafbf306398f776d1c91f9935919ef (patch)
tree32d3a21394753c05575ffd919020bc6df056b710 /epan/dissectors/packet-skinny.c
parent0367aaaa9b688a194d25d7fa17dfb9cd5b22dab6 (diff)
downloadwireshark-edcedbfed3bafbf306398f776d1c91f9935919ef.tar.gz
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=48377
Diffstat (limited to 'epan/dissectors/packet-skinny.c')
-rw-r--r--epan/dissectors/packet-skinny.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-skinny.c b/epan/dissectors/packet-skinny.c
index 1443728e50..3a19a4ceb1 100644
--- a/epan/dissectors/packet-skinny.c
+++ b/epan/dissectors/packet-skinny.c
@@ -2051,7 +2051,6 @@ dissect_skinny_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
i += 4;
proto_tree_add_item(skinny_tree, hf_cast_callSecurityStatus, tvb, i, 4, ENC_LITTLE_ENDIAN);
i += 4;
- val = tvb_get_letohl( tvb, i);
ti_sub = proto_tree_add_text(skinny_tree, tvb, i, 8, "partyPIRestrictionBits");
skinny_sub_tree = proto_item_add_subtree(ti_sub, ett_skinny_tree);
proto_tree_add_item(skinny_sub_tree, hf_cast_partyPIRestrictionBits_CallingPartyName, tvb, i, 4, ENC_LITTLE_ENDIAN);