more -z defs filtering

This commit is contained in:
vanhauser-thc
2021-12-16 21:31:37 +01:00
parent 3cb7319ccd
commit 641a943d95
2 changed files with 3 additions and 2 deletions

View File

@ -57,6 +57,7 @@ sending a mail to <afl-users+subscribe@googlegroups.com>.
- added AFL_USE_TSAN thread sanitizer support - added AFL_USE_TSAN thread sanitizer support
- llvm and LTO mode modified to work with new llvm 14-dev (again. again.) - llvm and LTO mode modified to work with new llvm 14-dev (again. again.)
- fix for AFL_REAL_LD - fix for AFL_REAL_LD
- more -z defs filtering
- make -v without options work - make -v without options work
- added the very good grammar mutator "GramaTron" to the - added the very good grammar mutator "GramaTron" to the
custom_mutators custom_mutators

View File

@ -720,10 +720,10 @@ static void edit_params(u32 argc, char **argv, char **envp) {
} }
if (!strcmp(cur, "-z")) { if (!strcmp(cur, "-z") || !strcmp(cur, "-Wl,-z")) {
u8 *param = *(argv + 1); u8 *param = *(argv + 1);
if (!strcmp(param, "defs")) { if (!strcmp(param, "defs") || !strcmp(param, "-Wl,defs")) {
skip_next = 1; skip_next = 1;
continue; continue;