summaryrefslogtreecommitdiff
path: root/src/core/fuzz-unit-file.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-05-12 12:51:11 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-05-12 14:57:07 +0200
commitc4f883b78e5ffd326a82eaf18e01a9e4e243db58 (patch)
tree712faa735096321206f0afd6097a4dd09bfcd6c1 /src/core/fuzz-unit-file.c
parent7593691aadc7e1e9c5f17fd26424abe337d56302 (diff)
downloadsystemd-c4f883b78e5ffd326a82eaf18e01a9e4e243db58.tar.gz
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/core/fuzz-unit-file.c')
-rw-r--r--src/core/fuzz-unit-file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/fuzz-unit-file.c b/src/core/fuzz-unit-file.c
index 81cede2193..058be6aa74 100644
--- a/src/core/fuzz-unit-file.c
+++ b/src/core/fuzz-unit-file.c
@@ -21,7 +21,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
const char *name;
long offset;
- if (size > 65536)
+ if (outside_size_range(size, 0, 65536))
return 0;
f = data_to_file(data, size);