mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
try working around panic by validating rt and lle
MFC after: 3 days
This commit is contained in:
parent
346bfbfcce
commit
1f93b77267
1 changed files with 2 additions and 1 deletions
|
|
@ -486,7 +486,8 @@ skip_ipsec2:;
|
|||
*/
|
||||
if ((fle = flowtable_lookup_mbuf(V_ip6_ft, m, AF_INET6)) != NULL) {
|
||||
flow_to_route_in6(fle, ro);
|
||||
flevalid = 1;
|
||||
if (ro->ro_rt != NULL && ro->ro_lle != NULL)
|
||||
flevalid = 1;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue