From: Remi Gacogne Date: Tue, 1 Aug 2023 11:51:20 +0000 (+0200) Subject: fuzzing: Add a missing cstdint header to the fuzzing targets X-Git-Tag: rec-5.0.0-alpha1~77^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68346dc4af859df1359eeede45b462f68bb5131e;p=thirdparty%2Fpdns.git fuzzing: Add a missing cstdint header to the fuzzing targets --- 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