mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 22:51:50 +03:00
Fix warning in ipalloc
This commit is contained in:
parent
efbee86278
commit
3c2c5a5071
1 changed files with 2 additions and 2 deletions
|
|
@ -1001,8 +1001,8 @@ JEMALLOC_ALWAYS_INLINE void *
|
|||
ipalloc(tsd_t *tsd, size_t usize, size_t alignment, bool zero)
|
||||
{
|
||||
|
||||
return (ipallocztm(tsd, usize, alignment, zero, tcache_get(tsd,
|
||||
NULL), false, NULL));
|
||||
return (ipallocztm(tsd, usize, alignment, zero, tcache_get(tsd, true),
|
||||
false, NULL));
|
||||
}
|
||||
|
||||
JEMALLOC_ALWAYS_INLINE size_t
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue