diff options
author | Jason Evans <je@fb.com> | 2013-01-31 22:42:41 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2013-01-31 22:43:54 (GMT) |
commit | d0e942e4669b8600b0bd7e5ae132ae26d10a40ed (patch) | |
tree | acdf0a23ff0c7fd4ea8ed43edddc7637d893465e /ChangeLog | |
parent | bbe29d374d0fa5f4684621f16c099294e56c26ef (diff) | |
download | jemalloc-d0e942e4669b8600b0bd7e5ae132ae26d10a40ed.zip jemalloc-d0e942e4669b8600b0bd7e5ae132ae26d10a40ed.tar.gz jemalloc-d0e942e4669b8600b0bd7e5ae132ae26d10a40ed.tar.bz2 |
Fix two quarantine bugs.
Internal reallocation of the quarantined object array leaked the old array.
Reallocation failure for internal reallocation of the quarantined object
array (very unlikely) resulted in memory corruption.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ found in the git revision history: - Fix TLS-related memory corruption that could occur during thread exit if the thread never allocated memory. Only the quarantine and prof facilities were susceptible. + - Fix two quarantine bugs: + + Internal reallocation of the quarantined object array leaked the old + array. + + Reallocation failure for internal reallocation of the quarantined object + array (very unlikely) resulted in memory corruption. * 3.3.0 (January 23, 2013) |