diff options
author | van Hauser <vh@thc.org> | 2023-10-03 10:36:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 10:36:21 +0200 |
commit | d09950f4bb98431576b872436f0fbf773ab895db (patch) | |
tree | 227f6d6086215f5091743d69d778f0e3c27b7a94 /instrumentation/afl-compiler-rt.o.c | |
parent | 1c582b6aeec034b2c0ef650abd35352df7d78fa7 (diff) | |
parent | 63100d2012038ce67bdf20b624c8c53afd4b99c7 (diff) | |
download | afl++-d09950f4bb98431576b872436f0fbf773ab895db.tar.gz |
Merge pull request #1880 from AFLplusplus/dev
push to stable
Diffstat (limited to 'instrumentation/afl-compiler-rt.o.c')
-rw-r--r-- | instrumentation/afl-compiler-rt.o.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/instrumentation/afl-compiler-rt.o.c b/instrumentation/afl-compiler-rt.o.c index dd9aae77..85ee9f71 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -666,8 +666,8 @@ static void __afl_map_shm(void) { } if (id_str) { - - if ((__afl_dummy_fd[1] = open("/dev/null", O_WRONLY)) < 0) { + // /dev/null doesn't work so we use /dev/urandom + if ((__afl_dummy_fd[1] = open("/dev/urandom", O_WRONLY)) < 0) { if (pipe(__afl_dummy_fd) < 0) { __afl_dummy_fd[1] = 1; } @@ -2294,7 +2294,7 @@ void __cmplog_rtn_hook_strn(u8 *ptr1, u8 *ptr2, u64 len) { int len1 = strnlen(ptr1, len0); if (len1 < 31) len1 = area_is_valid(ptr1, len1 + 1); int len2 = strnlen(ptr2, len0); - if (len2 < 31) len2 = area_is_valid(ptr1, len2 + 1); + if (len2 < 31) len2 = area_is_valid(ptr2, len2 + 1); int l = MAX(len1, len2); if (l < 2) return; |