diff options
| author | Jason Evans <jasone@canonware.com> | 2014-09-09 03:19:08 (GMT) |
|---|---|---|
| committer | Jason Evans <jasone@canonware.com> | 2014-09-09 03:19:08 (GMT) |
| commit | ffe93419d58aa342088d05c1c580bf59ea04d032 (patch) | |
| tree | c2b846d3742e9d7c58632d7b3d90f22cf8c3ba47 | |
| parent | 4cfe55166e0173be745c53adb0fecf50d11d1227 (diff) | |
| parent | a62812eacca8ac3ce81f27c9480b44b2a97ff66c (diff) | |
| download | jemalloc-ffe93419d58aa342088d05c1c580bf59ea04d032.zip jemalloc-ffe93419d58aa342088d05c1c580bf59ea04d032.tar.gz jemalloc-ffe93419d58aa342088d05c1c580bf59ea04d032.tar.bz2 | |
Merge pull request #115 from thestinger/isqalloct
fix isqalloct (should call isdalloct)
| -rw-r--r-- | include/jemalloc/internal/jemalloc_internal.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/jemalloc_internal.h.in b/include/jemalloc/internal/jemalloc_internal.h.in index c0e326d..81d46fc 100644 --- a/include/jemalloc/internal/jemalloc_internal.h.in +++ b/include/jemalloc/internal/jemalloc_internal.h.in @@ -827,7 +827,7 @@ isqalloc(void *ptr, size_t size, bool try_tcache) if (config_fill && opt_quarantine) quarantine(ptr); else - idalloct(ptr, try_tcache); + isdalloct(ptr, size, try_tcache); } JEMALLOC_ALWAYS_INLINE void * |
