ad33ebead8
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 |
||
---|---|---|
.. | ||
malloc.c | ||
malloc.h | ||
README.txt |
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