From: Paul Jakma Date: Mon, 13 Feb 2012 13:53:07 +0000 (+0000) Subject: bgpd: Fix regression in args consolidation, total should be inited from args X-Git-Tag: frr-2.0-rc1~1841 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=8794e8d229dc9fe29ea31424883433d4880ef408;p=matthieu%2Ffrr.git bgpd: Fix regression in args consolidation, total should be inited from args * bgp_attr.c: (bgp_attr_unknown) total should be initialised from the args. --- diff --git a/bgpd/bgp_attr.c b/bgpd/bgp_attr.c index 0d82aba04e..81802ce812 100644 --- a/bgpd/bgp_attr.c +++ b/bgpd/bgp_attr.c @@ -1646,7 +1646,7 @@ bgp_attr_ext_communities (struct bgp_attr_parser_args *args) static bgp_attr_parse_ret_t bgp_attr_unknown (struct bgp_attr_parser_args *args) { - bgp_size_t total; + bgp_size_t total = args->total; struct transit *transit; struct attr_extra *attre; struct peer *const peer = args->peer;