diff options
author | van Hauser <vh@thc.org> | 2024-10-30 13:20:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 13:20:48 +0100 |
commit | d0587a3ac46b1652b1b51b3253c9833d0ea06a13 (patch) | |
tree | f5d907aafec2fdfe4abca67f8357e9cb1b62d5f4 /instrumentation/afl-gcc-cmplog-pass.so.cc | |
parent | 78b7e14c73baacf1d88b3c03955e78f5080d17ba (diff) | |
parent | d1fd072b793cba16c28249abefe73ecb7feae4f2 (diff) | |
download | afl++-d0587a3ac46b1652b1b51b3253c9833d0ea06a13.tar.gz |
Merge pull request #2226 from AFLplusplus/dev
push to stable
Diffstat (limited to 'instrumentation/afl-gcc-cmplog-pass.so.cc')
-rw-r--r-- | instrumentation/afl-gcc-cmplog-pass.so.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/instrumentation/afl-gcc-cmplog-pass.so.cc b/instrumentation/afl-gcc-cmplog-pass.so.cc index 774dd5fd..38fce961 100644 --- a/instrumentation/afl-gcc-cmplog-pass.so.cc +++ b/instrumentation/afl-gcc-cmplog-pass.so.cc @@ -370,7 +370,8 @@ Set AFL_QUIET in the environment to silence it.\n\ int plugin_init(struct plugin_name_args *info, struct plugin_gcc_version *version) { - if (!plugin_default_version_check(version, &gcc_version)) + if (!plugin_default_version_check(version, &gcc_version) && + !getenv("AFL_GCC_DISABLE_VERSION_CHECK")) FATAL(G_("GCC and plugin have incompatible versions, expected GCC %s, " "is %s"), gcc_version.basever, version->basever); |