From f6bd99fc4d534f82b393fbd4f5e73523e9c30641 Mon Sep 17 00:00:00 2001 From: expend20 <36543551+expend20@users.noreply.github.com> Date: Mon, 19 Sep 2022 11:05:13 +0200 Subject: [PATCH] Gdiplus comments (#792) * Attempt to remove clang 12 setup * frida_gdiplus added to CI * Redundancy note * formatting again :\ * mistake of directory name --- fuzzers/frida_gdiplus/src/fuzzer.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fuzzers/frida_gdiplus/src/fuzzer.rs b/fuzzers/frida_gdiplus/src/fuzzer.rs index 96a72de93b..130e8c9954 100644 --- a/fuzzers/frida_gdiplus/src/fuzzer.rs +++ b/fuzzers/frida_gdiplus/src/fuzzer.rs @@ -1,5 +1,11 @@ //! A libfuzzer-like fuzzer with llmp-multithreading support and restarts //! The example harness is built for gdiplus. +//! NOTE: This file is 1-to-1 copy of the ../../frida_libpng/fuzzer.rs, which +//! is platform independent. Hence, this file contains code for other platforms +//! but it's only meaningful for Windows because of the gdiplus target. If you +//! going to make it compilable only for windows, don't foret to modify the +//! scripts/test_all_fuzzers.sh to opt-out this fuzzer from that test. + use mimalloc::MiMalloc; #[global_allocator] static GLOBAL: MiMalloc = MiMalloc;