diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-05-12 12:51:11 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-05-12 14:57:07 +0200 |
commit | c4f883b78e5ffd326a82eaf18e01a9e4e243db58 (patch) | |
tree | 712faa735096321206f0afd6097a4dd09bfcd6c1 /src/nspawn/fuzz-nspawn-oci.c | |
parent | fuzzers: add input size limits, always configure limits in two ways (diff) | |
download | systemd-c4f883b78e5ffd326a82eaf18e01a9e4e243db58.tar.xz systemd-c4f883b78e5ffd326a82eaf18e01a9e4e243db58.zip |
fuzzers: ignore size limits when compiled standalone
This way we can still call fuzzers on old samples, but oss-fuzz will not waste
its and our time finding overly large inputs.
Diffstat (limited to 'src/nspawn/fuzz-nspawn-oci.c')
-rw-r--r-- | src/nspawn/fuzz-nspawn-oci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nspawn/fuzz-nspawn-oci.c b/src/nspawn/fuzz-nspawn-oci.c index 7110a66187..5d0383479b 100644 --- a/src/nspawn/fuzz-nspawn-oci.c +++ b/src/nspawn/fuzz-nspawn-oci.c @@ -9,7 +9,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { _cleanup_fclose_ FILE *f = NULL; _cleanup_(settings_freep) Settings *s = NULL; - if (size > 65536) + if (outside_size_range(size, 0, 65536)) return 0; f = data_to_file(data, size); |