From 8aa82b337081b7a22c35dddad8d62fb1ca9ea884 Mon Sep 17 00:00:00 2001 From: Pauli Date: Fri, 4 Nov 2022 08:43:38 +1100 Subject: fuzz: add punycode decoder fuzz test Reviewed-by: Tomas Mraz Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/19591) --- fuzz/fuzzer.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'fuzz/fuzzer.h') diff --git a/fuzz/fuzzer.h b/fuzz/fuzzer.h index cd460dea8d..4d8b7b9a51 100644 --- a/fuzz/fuzzer.h +++ b/fuzz/fuzzer.h @@ -8,6 +8,9 @@ * or in the file LICENSE in the source distribution. */ +#include /* for uint8_t */ +#include /* for size_t */ + int FuzzerTestOneInput(const uint8_t *buf, size_t len); int FuzzerInitialize(int *argc, char ***argv); void FuzzerCleanup(void); -- cgit v1.2.3