aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-05-30 22:56:19 -0700
committerGuy Harris <guy@alum.mit.edu>2014-05-31 05:56:53 +0000
commit2af61db5103ec85a7d219c870d9d82eb838951cc (patch)
treed6e44894bf918695a0743d7f08d50be7fcac0f34
parentc91dd11ccb8fb6c77cb78cab59ae08c1b1b8df39 (diff)
Fix (legitimate) compiler warning.
Change-Id: Ie5abf8f95731a689e9851cc6ee5f169eafd617ac Reviewed-on: https://code.wireshark.org/review/1892 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--epan/dissectors/packet-oampdu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-oampdu.c b/epan/dissectors/packet-oampdu.c
index 780ab55590..4568e4f45c 100644
--- a/epan/dissectors/packet-oampdu.c
+++ b/epan/dissectors/packet-oampdu.c
@@ -1027,7 +1027,7 @@ dissect_oampdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
guint16 flags,state;
guint32 i;
- proto_tree *oampdu_tree;
+ proto_tree *oampdu_tree = NULL;
proto_item *oampdu_item;
proto_tree *flags_tree;
proto_item *flags_item;