aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2011-12-21 14:58:07 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2011-12-21 14:58:07 +0000
commitc2dbdb6f422f8c152861a8b794d0f1b79c8ec3e5 (patch)
tree1a85c561aeff535acbce9b929b1904921d47ba30
parent86e2ba54d4eeb9f8e53cdb87d064de85ef87e087 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=40262
-rw-r--r--epan/dissectors/packet-skinny.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-skinny.c b/epan/dissectors/packet-skinny.c
index d16b362d1c..9ff9ce128b 100644
--- a/epan/dissectors/packet-skinny.c
+++ b/epan/dissectors/packet-skinny.c
@@ -1691,7 +1691,7 @@ dissect_skinny_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree_add_item(skinny_sub_tree, hf_skinny_temporalSpatialTradeOffCapability, tvb, count, 4, ENC_LITTLE_ENDIAN);
count+= 4;
proto_tree_add_item(skinny_sub_tree, hf_skinny_stillImageTransmission, tvb, count, 4, ENC_LITTLE_ENDIAN);
- count+= 4;
+ /*count+= 4;*/
/* H.263 */
count = val;
@@ -1700,7 +1700,7 @@ dissect_skinny_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree_add_item(skinny_sub_tree, hf_skinny_h263_capability_bitfield, tvb, count, 4, ENC_LITTLE_ENDIAN);
count+= 4;
proto_tree_add_item(skinny_sub_tree, hf_skinny_annexNandWFutureUse, tvb, count, 4, ENC_LITTLE_ENDIAN);
- count+= 4;
+ /*count+= 4;*/
/* Video */
count = val;