summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-23 20:13:31 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-23 20:13:31 +0000
commitaa65e8463ec72ca61bf4769ae943d533f474e4d1 (patch)
tree0a01afb56d4b125eefe0ac8ca61cce90cd0472f8
parent09e10bb3311a6e42367236416db08f4db16ca426 (diff)
downloadwireshark-aa65e8463ec72ca61bf4769ae943d533f474e4d1.tar.gz
Fix Dead Store (Dead assignement/Dead increment) warning found by Clang
svn path=/trunk/; revision=54416
-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 7ea9217197..b3314f87f1 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;
+ guint8 *out;
proto_item *ti;
proto_tree *subtree;
guint start = offset;