diff options
author | van Hauser <vh@thc.org> | 2021-12-11 13:00:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-11 13:00:19 +0100 |
commit | 5ec91ad5291228f6ef6d9b69605a9b752ef28fa0 (patch) | |
tree | 03d433f881e6c49dbfd6e6093a6943937a07dec7 /test/test-cmplog.c | |
parent | 74aa826b60601eb59038bf61298b07eb20944caa (diff) | |
parent | 602eafc223d76987e447b431fc75903147a40c38 (diff) | |
download | afl++-5ec91ad5291228f6ef6d9b69605a9b752ef28fa0.tar.gz |
Merge pull request #1205 from yuawn/rename
rename active_paths
Diffstat (limited to 'test/test-cmplog.c')
-rw-r--r-- | test/test-cmplog.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/test/test-cmplog.c b/test/test-cmplog.c index 262df6bd..1a314653 100644 --- a/test/test-cmplog.c +++ b/test/test-cmplog.c @@ -7,6 +7,7 @@ #include <unistd.h> int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t i) { + if (i < 24) return 0; if (buf[0] != 'A') return 0; if (buf[1] != 'B') return 0; @@ -16,17 +17,25 @@ int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t i) { if (strncmp(buf + 12, "IJKL", 4) == 0 && strcmp(buf + 16, "DEADBEEF") == 0) abort(); return 0; + } #ifdef __AFL_COMPILER int main(int argc, char *argv[]) { - unsigned char buf[1024]; - ssize_t i; - while(__AFL_LOOP(1000)) { - i = read(0, (char*)buf, sizeof(buf) - 1); + + unsigned char buf[1024]; + ssize_t i; + while (__AFL_LOOP(1000)) { + + i = read(0, (char *)buf, sizeof(buf) - 1); if (i > 0) buf[i] = 0; LLVMFuzzerTestOneInput(buf, i); + } + return 0; + } + #endif + |