summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-spnego.c
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 /epan/dissectors/packet-spnego.c
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 'epan/dissectors/packet-spnego.c')
-rw-r--r--epan/dissectors/packet-spnego.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-spnego.c b/epan/dissectors/packet-spnego.c
index daa2ce881a..f712cd20d0 100644
--- a/epan/dissectors/packet-spnego.c
+++ b/epan/dissectors/packet-spnego.c
@@ -1806,7 +1806,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);
}