From fade4b4d97bdaaf4b5dba1da11d227d96df5fd66 Mon Sep 17 00:00:00 2001 From: Evan Huus Date: Fri, 1 Aug 2014 22:13:24 -0400 Subject: [PATCH] Fix another (valid) complaint from the mac buildbot What mystical new compiler upgrade is this? Change-Id: I89b3bfb53b9a19bbfb1cc8339d38cdc4a4652c62 Reviewed-on: https://code.wireshark.org/review/3347 Reviewed-by: Evan Huus --- epan/dissectors/packet-bgp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-bgp.c b/epan/dissectors/packet-bgp.c index 8f51b15a7d..8d7b7c6b4a 100644 --- a/epan/dissectors/packet-bgp.c +++ b/epan/dissectors/packet-bgp.c @@ -2244,7 +2244,7 @@ decode_flowspec_nlri(proto_tree *tree, tvbuff_t *tvb, gint offset, guint16 afi, guint tot_flow_len; /* total length of the flow spec NLRI */ guint offset_len; /* offset of the flow spec NLRI itself could be 1 or 2 bytes */ guint cursor_fspec; /* cursor to move into flow spec nlri */ - gint filter_len; + gint filter_len = -1; guint16 len_16; proto_item *item; proto_item *filter_item;