diff options
author | Timo Teräs <timo.teras@iki.fi> | 2015-06-23 14:08:49 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2015-06-23 14:09:54 +0300 |
commit | 54da37d07c759f5c4ef6b364d21dc8b020015eeb (patch) | |
tree | 6448e6f35469857ea26ebbeb3b82992efe9da017 /main/quagga/bgpd-route-selection-crash.patch | |
parent | d0c62ef3877dacb14a390de19739e529a342ca37 (diff) | |
download | aports-54da37d07c759f5c4ef6b364d21dc8b020015eeb.tar.bz2 aports-54da37d07c759f5c4ef6b364d21dc8b020015eeb.tar.xz |
main/quagga: rework the bgp route selection fix
Diffstat (limited to 'main/quagga/bgpd-route-selection-crash.patch')
-rw-r--r-- | main/quagga/bgpd-route-selection-crash.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main/quagga/bgpd-route-selection-crash.patch b/main/quagga/bgpd-route-selection-crash.patch new file mode 100644 index 0000000000..3f1797395e --- /dev/null +++ b/main/quagga/bgpd-route-selection-crash.patch @@ -0,0 +1,16 @@ +diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c +index 34ba1ab..ad8642e 100644 +--- a/bgpd/bgp_route.c ++++ b/bgpd/bgp_route.c +@@ -348,9 +348,9 @@ bgp_info_cmp (struct bgp *bgp, struct bgp_info *new, struct bgp_info *exist, + *paths_eq = 0; + + /* 0. Null check. */ +- if (new == NULL) ++ if (new == NULL || new->peer->su_remote == NULL) + return 0; +- if (exist == NULL) ++ if (exist == NULL || exist->peer->su_remote == NULL) + return 1; + + newattr = new->attr; |