Merge pull request #2 from JacobBarthelmeh/limit-file-size

fix typo
master
Kaleb Himes 2018-05-09 15:51:51 -06:00 committed by GitHub
commit 16a031ec7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t sz)
int ret;
/* avoid 25s timeout with parsing large files */
if (sz > WS_MAX_FUZZ_INPUT_SZ) {
if (sz > WC_MAX_FUZZ_INPUT_SZ) {
return 0;
}