diff options
author | vanhauser-thc <vh@thc.org> | 2021-02-07 05:33:02 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-02-07 05:33:02 +0100 |
commit | 209c5ba4657b641bf261da7ac9ce7d3f809109c2 (patch) | |
tree | 9aa88f72ad623b0b7bc3829a5fb94d19d2cde2ac /qemu_mode/libqasan/dlmalloc.c | |
parent | 01327ad301afbcc71b3ac597bc6e093839c5f469 (diff) | |
download | afl++-209c5ba4657b641bf261da7ac9ce7d3f809109c2.tar.gz |
larger map, stats reload fix, code format
Diffstat (limited to 'qemu_mode/libqasan/dlmalloc.c')
-rw-r--r-- | qemu_mode/libqasan/dlmalloc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qemu_mode/libqasan/dlmalloc.c b/qemu_mode/libqasan/dlmalloc.c index 39ca4301..ce94451d 100644 --- a/qemu_mode/libqasan/dlmalloc.c +++ b/qemu_mode/libqasan/dlmalloc.c @@ -3907,6 +3907,7 @@ static void internal_malloc_stats(mstate m) { clear_smallmap(M, I); \ \ } else if (RTCHECK(B == smallbin_at(M, I) || \ + \ (ok_address(M, B) && B->fd == P))) { \ \ F->bk = B; \ @@ -4117,6 +4118,7 @@ static void internal_malloc_stats(mstate m) { XP->child[1] = R; \ \ } else \ + \ CORRUPTION_ERROR_ACTION(M); \ if (R != 0) { \ \ @@ -4132,6 +4134,7 @@ static void internal_malloc_stats(mstate m) { C0->parent = R; \ \ } else \ + \ CORRUPTION_ERROR_ACTION(M); \ \ } \ @@ -4143,11 +4146,13 @@ static void internal_malloc_stats(mstate m) { C1->parent = R; \ \ } else \ + \ CORRUPTION_ERROR_ACTION(M); \ \ } \ \ } else \ + \ CORRUPTION_ERROR_ACTION(M); \ \ } \ |