mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-08-24 08:03:32 +03:00
fix isqalloct (should call isdalloct)
This commit is contained in:
parent
4cfe55166e
commit
a62812eacc
1 changed files with 1 additions and 1 deletions
|
|
@ -827,7 +827,7 @@ isqalloc(void *ptr, size_t size, bool try_tcache)
|
||||||
if (config_fill && opt_quarantine)
|
if (config_fill && opt_quarantine)
|
||||||
quarantine(ptr);
|
quarantine(ptr);
|
||||||
else
|
else
|
||||||
idalloct(ptr, try_tcache);
|
isdalloct(ptr, size, try_tcache);
|
||||||
}
|
}
|
||||||
|
|
||||||
JEMALLOC_ALWAYS_INLINE void *
|
JEMALLOC_ALWAYS_INLINE void *
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue