Fix Dead Store (Dead assignement/Dead increment) warning found by Clang

svn path=/trunk/; revision=54412
This commit is contained in:
Alexis La Goutte 2013-12-23 20:12:39 +00:00
parent 368df16f6a
commit b3a584d8dc
1 changed files with 1 additions and 1 deletions

View File

@ -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;