summaryrefslogtreecommitdiff
path: root/asn1
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-03-17 19:24:09 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-03-17 19:24:09 +0000
commit55cdb2b45ba1d218ab4bd7320b02985ca1068973 (patch)
tree6edba098881a47c884d9508fae998a77807e1494 /asn1
parent64e30a1686097cf545e8da7d8312ef02f0d566ac (diff)
downloadwireshark-55cdb2b45ba1d218ab4bd7320b02985ca1068973.tar.gz
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=48374
Diffstat (limited to 'asn1')
-rw-r--r--asn1/spnego/packet-spnego-template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/spnego/packet-spnego-template.c b/asn1/spnego/packet-spnego-template.c
index 365774dd2c..da381540d1 100644
--- a/asn1/spnego/packet-spnego-template.c
+++ b/asn1/spnego/packet-spnego-template.c
@@ -1325,7 +1325,7 @@ dissect_spnego(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
* as well. Naughty, naughty.
*
*/
- offset = dissect_spnego_NegotiationToken(FALSE, tvb, offset, &asn1_ctx, subtree, -1);
+ dissect_spnego_NegotiationToken(FALSE, tvb, offset, &asn1_ctx, subtree, -1);
}