summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-07-07 08:27:01 +0200
committerAnders Broman <a.broman58@gmail.com>2014-07-07 10:25:20 +0000
commit3c638d8bf832c12ce6000593360582d1656fbe03 (patch)
treec2a64402147f93b989adfdfbb2c43ac38b1b5a1c
parent4ce4e3a41e80aa7f4b45db2877979b7377ba2371 (diff)
downloadwireshark-3c638d8bf832c12ce6000593360582d1656fbe03.tar.gz
Fix Branch condition evaluates to a garbage value found by Clang Analyzer
Change-Id: I2cb4fb8064c80ee7985c3908820f09f5fa7e37fb Reviewed-on: https://code.wireshark.org/review/2913 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-dtpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dtpt.c b/epan/dissectors/packet-dtpt.c
index 57e6a486ae..04bda209a3 100644
--- a/epan/dissectors/packet-dtpt.c
+++ b/epan/dissectors/packet-dtpt.c
@@ -438,7 +438,7 @@ dissect_dtpt_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
guint32 num_addrs;
guint32 addrs_length1 = 0;
proto_item *dtpt_addrs_item = NULL;
- proto_tree *dtpt_addrs_tree;
+ proto_tree *dtpt_addrs_tree = NULL;
guint32 blob_rawsize = 0;
guint32 blob_size = 0;
guint32 blob_data_length = 0;