aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-10-21 14:53:51 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-10-21 14:53:51 +0000
commit55356782dbd91a606d5170a18128e77cba8e4661 (patch)
treedf520ba878c523b7af7173c898622a13297f2f89
parent732a7354299c0947c9babdea2bf67d402cb61019 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=45684
-rw-r--r--epan/dissectors/packet-quake2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-quake2.c b/epan/dissectors/packet-quake2.c
index 3cf8770403..968d1851a0 100644
--- a/epan/dissectors/packet-quake2.c
+++ b/epan/dissectors/packet-quake2.c
@@ -114,7 +114,7 @@ dissect_quake2_ConnectionlessPacket(tvbuff_t *tvb, packet_info *pinfo _U_,
proto_tree_add_string(cl_tree, hf_quake2_connectionless_text,
tvb, offset, len, text);
}
- offset += len;
+ /*offset += len;*/
/* we should analyse the result 'text' a bit further */
/* for this we need the direction parameter */