summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch')
-rw-r--r--meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch b/meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch
new file mode 100644
index 0000000000..f08bb572da
--- /dev/null
+++ b/meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch
@@ -0,0 +1,28 @@
1Upstream-Status: Pending
2
3Subject: ospf6d: check ospf6 before using it in ospf6_clean
4
5The ospf6 variable might be 'NULL' causing segment fault error.
6Check it before referencing it.
7
8Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
9---
10 ospf6d/ospf6d.c | 2 ++
11 1 file changed, 2 insertions(+)
12
13diff --git a/ospf6d/ospf6d.c b/ospf6d/ospf6d.c
14index 3cdd5c1..e3bf1af 100644
15--- a/ospf6d/ospf6d.c
16+++ b/ospf6d/ospf6d.c
17@@ -1892,6 +1892,8 @@ ospf6_init (void)
18 void
19 ospf6_clean (void)
20 {
21+ if (ospf6 == NULL)
22+ return;
23 if (ospf6->route_table)
24 ospf6_route_remove_all (ospf6->route_table);
25 if (ospf6->brouter_table)
26--
271.9.1
28