summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-23 20:12:39 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-23 20:12:39 +0000
commitb3a584d8dc91437bc675b85e61ad3969a1698196 (patch)
tree4b3e2ed4cf09cad601799a84c27b49fd30cf8c30
parent368df16f6a5a68b7245b2c59aabdfdd4f729ada4 (diff)
downloadwireshark-b3a584d8dc91437bc675b85e61ad3969a1698196.tar.gz
Fix Dead Store (Dead assignement/Dead increment) warning found by Clang
svn path=/trunk/; revision=54412
-rw-r--r--epan/dissectors/packet-bacapp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bacapp.c b/epan/dissectors/packet-bacapp.c
index 86a40edf9d..7ea9217197 100644
--- a/epan/dissectors/packet-bacapp.c
+++ b/epan/dissectors/packet-bacapp.c
@@ -6231,7 +6231,7 @@ fCharacterString(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint offs
guint32 lvt, l;
guint offs, extra = 1;
const char *coding;
- guint8 bf_arr[512], *out = &bf_arr[0];
+ guint8 bf_arr[512], *out;
proto_item *ti;
proto_tree *subtree;
guint start = offset;