diff options
author | hexcoder- <heiko@hexco.de> | 2021-02-13 13:32:42 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2021-02-13 13:32:42 +0100 |
commit | 70651d60bdc5c70a8a699e0873a4726e1347a7c3 (patch) | |
tree | 898468927bb1bc06ccceaa763cf44fc333ab3ccc /qemu_mode/libqasan/string.c | |
parent | 385312c65858695b55607ccd376fb5ea8f83a688 (diff) | |
parent | 87a607c7d081dac1e4afd7c3cbe5accf62d355e4 (diff) | |
download | afl++-70651d60bdc5c70a8a699e0873a4726e1347a7c3.tar.gz |
Merge branch 'dev' of https://github.com/AFLplusplus/AFLplusplus into dev
Diffstat (limited to 'qemu_mode/libqasan/string.c')
-rw-r--r-- | qemu_mode/libqasan/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu_mode/libqasan/string.c b/qemu_mode/libqasan/string.c index 4be01279..c850463b 100644 --- a/qemu_mode/libqasan/string.c +++ b/qemu_mode/libqasan/string.c @@ -271,7 +271,7 @@ void *__libqasan_memmem(const void *haystack, size_t haystack_len, } - } while (++h <= end); + } while (h++ <= end); return 0; |