summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-10-28 18:33:12 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-10-28 18:33:12 +0000
commit526f61a3409fda8b45c9f30a3fdb16c3980efab4 (patch)
tree1aca6f98f2dea1da6b9305f493e0013820b368d1
parent6266e87f849f0996a1368920d68bbf20d531a0b1 (diff)
downloadwireshark-526f61a3409fda8b45c9f30a3fdb16c3980efab4.tar.gz
fix [-Werror=uninitialized]
svn path=/trunk/; revision=45819
-rw-r--r--epan/dissectors/packet-mip6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mip6.c b/epan/dissectors/packet-mip6.c
index f5b5393fad..f1ad23df3f 100644
--- a/epan/dissectors/packet-mip6.c
+++ b/epan/dissectors/packet-mip6.c
@@ -3079,7 +3079,7 @@ dissect_mipv6_options(tvbuff_t *tvb, int offset, guint length,
packet_info *pinfo, proto_tree *opt_tree)
{
proto_item *ti;
- proto_tree *opt_data_tree;
+ proto_tree *opt_data_tree = NULL;
guchar opt;
const mip6_opt *optp;
opt_len_type len_type;