mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix another 0 / NULL mixup.
This commit is contained in:
parent
e819d5cc21
commit
8dee2f6746
1 changed files with 1 additions and 1 deletions
|
|
@ -981,7 +981,7 @@ m_fragment(struct mbuf *m0, int how, int length)
|
|||
if (m_final == NULL)
|
||||
goto nospace;
|
||||
|
||||
if (m_dup_pkthdr(m_final, m0, how) == NULL)
|
||||
if (m_dup_pkthdr(m_final, m0, how) == 0)
|
||||
goto nospace;
|
||||
|
||||
m_new = m_final;
|
||||
|
|
|
|||
Loading…
Reference in a new issue