summaryrefslogtreecommitdiffstats
path: root/src/zone.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zone.c')
-rw-r--r--src/zone.c18
1 files changed, 3 insertions, 15 deletions
diff --git a/src/zone.c b/src/zone.c
index 2c1b231..07f8861 100644
--- a/src/zone.c
+++ b/src/zone.c
@@ -133,22 +133,10 @@ zone_destroy(malloc_zone_t *zone)
static size_t
zone_good_size(malloc_zone_t *zone, size_t size)
{
- size_t ret;
- void *p;
- /*
- * Actually create an object of the appropriate size, then find out
- * how large it could have been without moving up to the next size
- * class.
- */
- p = JEMALLOC_P(malloc)(size);
- if (p != NULL) {
- ret = isalloc(p);
- JEMALLOC_P(free)(p);
- } else
- ret = size;
-
- return (ret);
+ if (size == 0)
+ size = 1;
+ return (s2u(size));
}
static void