From 68346dc4af859df1359eeede45b462f68bb5131e Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Tue, 1 Aug 2023 13:51:20 +0200 Subject: [PATCH] fuzzing: Add a missing cstdint header to the fuzzing targets --- pdns/fuzz_yahttp.cc | 2 +- pdns/standalone_fuzz_target_runner.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/fuzz_yahttp.cc b/pdns/fuzz_yahttp.cc index f0096f4996..88ce42b708 100644 --- a/pdns/fuzz_yahttp.cc +++ b/pdns/fuzz_yahttp.cc @@ -19,7 +19,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - +#include #include extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size); diff --git a/pdns/standalone_fuzz_target_runner.cc b/pdns/standalone_fuzz_target_runner.cc index 40a9a4b9b9..0ca91064b6 100644 --- a/pdns/standalone_fuzz_target_runner.cc +++ b/pdns/standalone_fuzz_target_runner.cc @@ -1,4 +1,4 @@ - +#include #include #include #include -- 2.47.2