aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-isl.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-05-30 21:00:05 +0000
committerGerald Combs <gerald@wireshark.org>2005-05-30 21:00:05 +0000
commit923446f1f5dc54a27bee05d57fdfab3cbe8ade47 (patch)
tree8510a696179535656673222044b8b65b97947803 /epan/dissectors/packet-isl.c
parent861dc4e340774832b383257016e84e2e00adc300 (diff)
From Steve Grubb: Initialize some variables. Fixes part of bug 217.
svn path=/trunk/; revision=14497
Diffstat (limited to 'epan/dissectors/packet-isl.c')
-rw-r--r--epan/dissectors/packet-isl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-isl.c b/epan/dissectors/packet-isl.c
index 5372c0c6a7..66ef0c3984 100644
--- a/epan/dissectors/packet-isl.c
+++ b/epan/dissectors/packet-isl.c
@@ -152,9 +152,9 @@ dissect_isl(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int fcs_len)
guint8 type;
volatile guint16 length;
gint captured_length;
- tvbuff_t *volatile payload_tvb;
+ tvbuff_t *volatile payload_tvb = NULL;
tvbuff_t *volatile next_tvb;
- tvbuff_t *volatile trailer_tvb;
+ tvbuff_t *volatile trailer_tvb = NULL;
const char *saved_proto;
if (check_col(pinfo->cinfo, COL_PROTOCOL))