diff options
author | ifyGecko <26214995+ifyGecko@users.noreply.github.com> | 2023-11-16 19:02:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-16 19:02:46 -0500 |
commit | b05e3f7ac019224884af9f35d3cfdb72a604d02d (patch) | |
tree | 9bccc334e91bef4eb3072b151249ecd244507d2b /src | |
parent | 61e27c6b54f7641a168b6acc6ecffb1754c10918 (diff) | |
download | afl++-b05e3f7ac019224884af9f35d3cfdb72a604d02d.tar.gz |
missing closing parenthesis
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz-redqueen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-redqueen.c b/src/afl-fuzz-redqueen.c index 86e7f1cf..13f164f5 100644 --- a/src/afl-fuzz-redqueen.c +++ b/src/afl-fuzz-redqueen.c @@ -1321,7 +1321,7 @@ static u8 cmp_extend_encoding(afl_state_t *afl, struct cmp_header *h, } else { #ifndef WORD_SIZE_64 - if (repl <= 0x00ffffffffffffff { + if (repl <= 0x00ffffffffffffff) { new_val = repl << 8; u8 scale_len = 0; |