diff options
author | van Hauser <vh@thc.org> | 2023-06-29 18:00:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 18:00:46 +0300 |
commit | 641d02ab7211585e72e215405cd49c0712a8b4df (patch) | |
tree | 6bf544caf53f4ef7f7ca8ad02c2a412150758aa9 /qemu_mode/libqasan/dlmalloc.c | |
parent | af8c68a774d0271ae6a2145ac566e1c7024e95d5 (diff) | |
parent | 3e1d7941077b1457f702988063d6b9fdd9b80740 (diff) | |
download | afl++-641d02ab7211585e72e215405cd49c0712a8b4df.tar.gz |
Merge pull request #1780 from AFLplusplus/dev
push to stable
Diffstat (limited to 'qemu_mode/libqasan/dlmalloc.c')
-rw-r--r-- | qemu_mode/libqasan/dlmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu_mode/libqasan/dlmalloc.c b/qemu_mode/libqasan/dlmalloc.c index 5d0b65ce..b459eb7b 100644 --- a/qemu_mode/libqasan/dlmalloc.c +++ b/qemu_mode/libqasan/dlmalloc.c @@ -1762,7 +1762,7 @@ static FORCEINLINE void *win32direct_mmap(size_t size) { static FORCEINLINE int win32munmap(void *ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; - char *cptr = (char *)ptr; + char *cptr = (char *)ptr; while (size) { |