aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-smpp.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-03-17 19:24:25 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-03-17 19:24:25 +0000
commit0367aaaa9b688a194d25d7fa17dfb9cd5b22dab6 (patch)
tree7f918a62186539e1b4c5458bd385a4346f15fa95 /epan/dissectors/packet-smpp.c
parent086eaf58bfe4ce43931018f675219092097043ab (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=48376
Diffstat (limited to 'epan/dissectors/packet-smpp.c')
-rw-r--r--epan/dissectors/packet-smpp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-smpp.c b/epan/dissectors/packet-smpp.c
index 922299920e..2cb5d1be9f 100644
--- a/epan/dissectors/packet-smpp.c
+++ b/epan/dissectors/packet-smpp.c
@@ -2717,7 +2717,7 @@ dissect_smpp_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
} /* if (command_id & 0x80000000) */
} /* if (command_length <= tvb_reported_length(pdu_tvb)) */
- offset += command_length;
+ /*offset += command_length;*/
} /* if (tree || (command_id == 4)) */
/* Queue packet for Tap */