aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ldss.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2009-03-29 14:16:37 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2009-03-29 14:16:37 +0000
commita9a840da2e2e06288d917bb1574fde808886ff0e (patch)
tree9b64f345cda504efe931afa9dace503725c996f3 /epan/dissectors/packet-ldss.c
parentb856f2f5d8cecdf87deb61b8661d1cd12a9b79f2 (diff)
Fix:
packet-ldss.c: In function 'dissect_ldss_transfer': packet-ldss.c:469: warning: 'ldss_tree' may be used uninitialized in this function packet-ldss.c:469: warning: 'line_tree' may be used uninitialized in this function git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27881 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ldss.c')
-rw-r--r--epan/dissectors/packet-ldss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ldss.c b/epan/dissectors/packet-ldss.c
index 2456f562ab..53dfe757ee 100644
--- a/epan/dissectors/packet-ldss.c
+++ b/epan/dissectors/packet-ldss.c
@@ -466,7 +466,7 @@ dissect_ldss_transfer (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
ldss_transfer_info_t *transfer_info;
struct tcpinfo *transfer_tcpinfo;
- proto_tree *ti, *line_tree, *ldss_tree;
+ proto_tree *ti, *line_tree = NULL, *ldss_tree = NULL;
nstime_t broadcast_response_time;