aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2013-06-12 12:20:50 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2013-06-12 12:20:50 +0000
commite94463b0df46f39fbf89b150bd9c45a790476f64 (patch)
tree1caa635acbde0afbdc44272a9578071a24e6244e /epan
parent822c02b5d0c46e82e907ff7bfa1e7dc980d0253d (diff)
fix compiler warning
(gcc version 4.4.5 (Debian 4.4.5-8)) cc1: warnings being treated as errors packet-bthfp.c: In function ‘dissect_at_command’: packet-bthfp.c:875: error: ‘col_str’ may be used uninitialized in this function svn path=/trunk/; revision=49900
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-bthfp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bthfp.c b/epan/dissectors/packet-bthfp.c
index 715f9d43c0..35087be5b1 100644
--- a/epan/dissectors/packet-bthfp.c
+++ b/epan/dissectors/packet-bthfp.c
@@ -872,7 +872,7 @@ dissect_at_command(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
proto_item *pitem;
proto_tree *command_item;
proto_item *command_tree;
- guint8 *col_str;
+ guint8 *col_str = NULL;
guint8 *at_stream;
guint8 *at_command = NULL;
guint i_char = 0;