diff options
author | Christopher Ferris <cferris@google.com> | 2018-05-29 17:39:12 -0700 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2018-05-30 02:06:15 +0000 |
commit | 03cb53a17d47e1a4777672e4ea76afa8e23f1d41 (patch) | |
tree | 3be7f8888d3c72db350b01b70686ad3efa82c75c /libc/malloc_debug/malloc_debug.cpp | |
parent | dac8340c437c9dafcc7e621f9dafa6a2239c3ca9 (diff) |
DO NOT MERGE: Move to version v1.1.
The new malloc debug sets the num allocations field to non-zero.
Unfortunately, an old version of malloc debug incorrectly set this field.
In order to differentiate between the broken output, increment the version
number.
Bug: 74361929
Test: Ran unit tests.
Change-Id: Ia88300e324fe9d46aae0c93079ee926e088e675e
Diffstat (limited to 'libc/malloc_debug/malloc_debug.cpp')
-rw-r--r-- | libc/malloc_debug/malloc_debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/malloc_debug/malloc_debug.cpp b/libc/malloc_debug/malloc_debug.cpp index 6f841cab5..e83f73c32 100644 --- a/libc/malloc_debug/malloc_debug.cpp +++ b/libc/malloc_debug/malloc_debug.cpp @@ -819,7 +819,7 @@ bool debug_dump_heap(const char* file_name) { return false; } - fprintf(fp, "Android Native Heap Dump v1.0\n\n"); + fprintf(fp, "Android Native Heap Dump v1.1\n\n"); PointerData::DumpLiveToFile(fp); |