From 97644836935020b9f42688bb6530f08f536644a9 Mon Sep 17 00:00:00 2001
From: vanhauser-thc <vh@thc.org>
Date: Fri, 14 Apr 2023 16:27:32 +0200
Subject: [PATCH] remove warning

---
 utils/aflpp_driver/aflpp_driver.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/utils/aflpp_driver/aflpp_driver.c b/utils/aflpp_driver/aflpp_driver.c
index 00a94b9c1..342948098 100644
--- a/utils/aflpp_driver/aflpp_driver.c
+++ b/utils/aflpp_driver/aflpp_driver.c
@@ -268,12 +268,15 @@ static int ExecuteFilesOnyByOne(int argc, char **argv,
 
 __attribute__((weak)) int main(int argc, char **argv) {
 
+// Enable if LLVMFuzzerTestOneInput() has the weak attribute
+/*
   if (!LLVMFuzzerTestOneInput) {
 
     fprintf(stderr, "Error: function LLVMFuzzerTestOneInput() not found!\n");
     abort();
 
   }
+*/
 
   if (argc < 2 || strncmp(argv[1], "-h", 2) == 0)
     printf(
-- 
GitLab