platform_bionic/libc/upstream-dlmalloc
Christopher Ferris ad33ebead8 Fix bug in dlmalloc's version of calloc.
Under some circumstances, doing a calloc will make sure that the memory
returned will be zero up to the size of the requested size. However, if
there is more usable size than the requested size, that extra part
of the allocation will not be zeroed. This change fixes it so that the
entire usable memory is always zeroed.

Change-Id: I8a66d6767c074023c4ba3568bf2705e1886740fc
2015-12-16 14:48:03 -08:00
..
malloc.c Fix bug in dlmalloc's version of calloc. 2015-12-16 14:48:03 -08:00
malloc.h Upgrade to dlmalloc 2.8.6. 2012-08-29 18:18:29 -07:00
README.txt Upgrade to dlmalloc 2.8.6. 2012-08-29 18:18:29 -07:00

This directory contains malloc/free routines implemented by Doug Lea
(aka dlmalloc). You should not edit these files directly. Make fixes
upstream and then pull down the new version of the file.

This code is imported from: ftp://g.oswego.edu/pub/misc/
It is currently version 2.8.6.

Currently there are very minor modifications that are signified with:
BEGIN android-changed: change description
END android-changed