diff options
author | van Hauser <vh@thc.org> | 2020-12-08 11:30:05 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-12-08 11:30:05 +0100 |
commit | da6cddab904e363775f157ceafa932f3cdaf6121 (patch) | |
tree | acb3cf74224edae733655d3a3dd2c231c3b5857a /utils/aflpp_driver/aflpp_qemu_driver.c | |
parent | 46156957bd120dc8d8bcd9da72f83574902c654f (diff) | |
download | afl++-da6cddab904e363775f157ceafa932f3cdaf6121.tar.gz |
fix asserts
Diffstat (limited to 'utils/aflpp_driver/aflpp_qemu_driver.c')
-rw-r--r-- | utils/aflpp_driver/aflpp_qemu_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/aflpp_driver/aflpp_qemu_driver.c b/utils/aflpp_driver/aflpp_qemu_driver.c index a0c02833..79de5af6 100644 --- a/utils/aflpp_driver/aflpp_qemu_driver.c +++ b/utils/aflpp_driver/aflpp_qemu_driver.c @@ -6,7 +6,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size); __attribute__((weak)) int LLVMFuzzerInitialize(int *argc, char ***argv); -#define kMaxAflInputSize (1 * 1024 * 1024); +#define kMaxAflInputSize (1 * 1024 * 1024) static uint8_t AflInputBuf[kMaxAflInputSize]; void __attribute__((noinline)) afl_qemu_driver_stdin_input(void) { |