m_getjcl() should return the address of the mbuf, not the
cluster. Found by: glebius
This commit is contained in:
parent
5eb5c9639a
commit
f33bf4a394
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=154575
@ -438,7 +438,7 @@ m_getjcl(int how, short type, int flags, int size)
|
||||
n = uma_zalloc_arg(zone, m, how);
|
||||
if (n == NULL)
|
||||
uma_zfree(zone_mbuf, m);
|
||||
return n;
|
||||
return m;
|
||||
}
|
||||
|
||||
static __inline
|
||||
|
Loading…
Reference in New Issue
Block a user