From 063379049f9d43fc08bc74a7fe8639add88730ef Mon Sep 17 00:00:00 2001 From: Brad House Date: Fri, 30 Aug 2024 06:32:15 -0400 Subject: [PATCH] OSS-Fuzz: can't modify build commands easily, work around on our side We modified the include path with recent changes, that isn't good for OSS-Fuzz. Lets make the path relative for including some semi-public headers to allow OSS-Fuzz to build again. Fix By: Brad House (@bradh352) --- test/ares-test-fuzz.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/ares-test-fuzz.c b/test/ares-test-fuzz.c index 9879accb..4758d7d7 100644 --- a/test/ares-test-fuzz.c +++ b/test/ares-test-fuzz.c @@ -26,8 +26,8 @@ #include #include #include "ares.h" -#include "ares__buf.h" -#include "ares_mem.h" +#include "include/ares__buf.h" +#include "include/ares_mem.h" int LLVMFuzzerTestOneInput(const unsigned char *data, unsigned long size);