From: Paul Jakma Date: Fri, 12 May 2006 23:29:22 +0000 (+0000) Subject: [bgpd] CID #6, remove useless NULL check, bgp_static_update_rsclient X-Git-Tag: frr-2.0-rc1~2699 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=06e110f9372f61bea23c2eaa25e7850b254bbd1a;p=matthieu%2Ffrr.git [bgpd] CID #6, remove useless NULL check, bgp_static_update_rsclient 2006-05-12 Paul Jakma * bgp_route.c: (bgp_static_update_rsclient) Remove useless NULL check, code already assumes bgp_static can not be NULL, fixes CID #6. --- diff --git a/bgpd/ChangeLog b/bgpd/ChangeLog index 0b500158e3..80827393b7 100644 --- a/bgpd/ChangeLog +++ b/bgpd/ChangeLog @@ -5,6 +5,7 @@ * bgp_route.c: (bgp_static_update_main) Remove useless NULL check, code already assumes bgp_static can not be NULL, fixes CID #7. + (bgp_static_update_rsclient) ditto, CID #6 2006-05-08 Paul Jakma diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index 385198e23e..c86ca5f057 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -2937,15 +2937,17 @@ bgp_static_update_rsclient (struct peer *rsclient, struct prefix *p, bgp = rsclient->bgp; + assert (bgp_static); + if (!bgp_static) + return; + rn = bgp_afi_node_get (rsclient->rib[afi][safi], afi, safi, p, NULL); bgp_attr_default_set (&attr, BGP_ORIGIN_IGP); - if (bgp_static) - { - attr.nexthop = bgp_static->igpnexthop; - attr.med = bgp_static->igpmetric; - attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC); - } + + attr.nexthop = bgp_static->igpnexthop; + attr.med = bgp_static->igpmetric; + attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC); new_attr = attr;