aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-01-18 21:11:52 +0100
committerPeter Wu <peter@lekensteyn.nl>2016-01-18 21:31:00 +0000
commite42a262ca9015770bbab8524c575512d2323a81a (patch)
tree83f4a934f14f6360b7d17a406507345c0a756afb /epan/dissectors
parentdc4c64b4cbbf46596d9810e56b49773cb41eadec (diff)
SSL : Fix Branch condition evaluates to a garbage value found by Clang
Change-Id: I06150ce2d42285de0cb150f787f10942d1d7d4c0 Reviewed-on: https://code.wireshark.org/review/13404 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ssl.c b/epan/dissectors/packet-ssl.c
index d44f5a0061..105aa390a2 100644
--- a/epan/dissectors/packet-ssl.c
+++ b/epan/dissectors/packet-ssl.c
@@ -928,7 +928,7 @@ desegment_ssl(tvbuff_t *tvb, packet_info *pinfo, int offset,
gboolean must_desegment;
gboolean called_dissector;
int another_pdu_follows;
- gboolean another_segment_in_frame;
+ gboolean another_segment_in_frame = FALSE;
int deseg_offset;
guint32 deseg_seq;
gint nbytes;