fix qasan search path

This commit is contained in:
vanhauser-thc
2021-02-27 18:14:50 +01:00
parent c2127e3ff7
commit 79f1a44a01
2 changed files with 3 additions and 3 deletions

View File

@ -372,11 +372,11 @@ u8 *get_libqasan_path(u8 *own_loc) {
} }
if (!access(BIN_PATH "/libqasan.so", X_OK)) { if (!access(AFL_PATH "/libqasan.so", X_OK)) {
if (cp) { ck_free(cp); } if (cp) { ck_free(cp); }
return ck_strdup(BIN_PATH "/libqasan.so"); return ck_strdup(AFL_PATH "/libqasan.so");
} }