aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-07-08 11:58:31 +0200
committerAnders Broman <a.broman58@gmail.com>2014-07-08 10:39:20 +0000
commitb0a7251f385f5f2b73ac378d2c7b27e7b30c790c (patch)
treee2b6a41c58d87680cc8e6fba89457cb57354ed73
parent4e478aac671e7efd830deac352e473b4229cfb60 (diff)
Fix Uninitialized argument value found by Clang Analyzer
Change-Id: Ia39d7b258a888c188ae7d87c3c907e2a0ad1d3f0 Reviewed-on: https://code.wireshark.org/review/2936 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-rsvp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rsvp.c b/epan/dissectors/packet-rsvp.c
index 109dddf880..75a1ae64a3 100644
--- a/epan/dissectors/packet-rsvp.c
+++ b/epan/dissectors/packet-rsvp.c
@@ -2411,7 +2411,7 @@ dissect_rsvp_ifid_tlv(proto_tree *ti, proto_tree *rsvp_object_tree,
int tlv_len;
guint8 isis_len;
const char *tlv_name, *ip_str;
- proto_tree *rsvp_ifid_subtree=NULL, *ti2;
+ proto_tree *rsvp_ifid_subtree=NULL, *ti2 = NULL;
for (tlv_off = 0; tlv_off < length; ) {
tlv_type = tvb_get_ntohs(tvb, offset+tlv_off);