mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix panic in ng_patch(4) caused by checksum flags being added to mbuf flags.
Tested by: Maxim Ignatenko <gelraen.ua@gmail.com> Approved by: kib(mentor) MFC after: 3 days
This commit is contained in:
parent
e36c7d52b3
commit
3a0cd8db78
1 changed files with 1 additions and 1 deletions
|
|
@ -517,7 +517,7 @@ ng_patch_rcvdata(hook_p hook, item_p item)
|
|||
return (ENOMEM);
|
||||
}
|
||||
do_patch(priv, m);
|
||||
m->m_flags |= priv->config->csum_flags;
|
||||
m->m_pkthdr.csum_flags |= priv->config->csum_flags;
|
||||
}
|
||||
|
||||
target = NULL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue