1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

workaround bug with ipv6 where a flow can have a null rtentry

This commit is contained in:
Kip Macy 2010-05-12 04:51:20 +00:00
parent 1f93b77267
commit 19d0491585
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=207953

View File

@ -1389,7 +1389,9 @@ fle_free(struct flentry *fle, struct flowtable *ft)
rt = __DEVOLATILE(struct rtentry *, fle->f_rt);
lle = __DEVOLATILE(struct llentry *, fle->f_lle);
if (rt != NULL)
RTFREE(rt);
if (lle != NULL)
LLE_FREE(lle);
flow_free(fle, ft);
}