aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-01-13 16:20:23 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-01-13 16:20:23 +0000
commit7dc1bd38a11aa760e4be1a24db08a72ad6ca057d (patch)
treeace652d7567c49e010dae612f18079a10d92c05a /asn1
parent346bdd6c8778344902aa8d915208aafa803e60d4 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=40460
Diffstat (limited to 'asn1')
-rw-r--r--asn1/idmp/packet-idmp-template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/idmp/packet-idmp-template.c b/asn1/idmp/packet-idmp-template.c
index fd86a4e0cf..ebcf846e7d 100644
--- a/asn1/idmp/packet-idmp-template.c
+++ b/asn1/idmp/packet-idmp-template.c
@@ -233,7 +233,7 @@ static void dissect_idmp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_t
save_private_data = pinfo->private_data;
pinfo->private_data = &session;
- offset = dissect_idmp_IDM_PDU(FALSE, tvb, offset, &asn1_ctx, tree, hf_idmp_PDU);
+ dissect_idmp_IDM_PDU(FALSE, tvb, offset, &asn1_ctx, tree, hf_idmp_PDU);
pinfo->private_data = save_private_data;
}