diff options
author | van Hauser <vh@thc.org> | 2020-12-07 14:29:59 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-12-07 14:29:59 +0100 |
commit | 4c2e375e22a0b3c88380e6dd51dbac5d2c5ac5ff (patch) | |
tree | b49e56b624e8b0fd235b262e9a88c17cb6f057d1 | |
parent | 8f79116a15e53f0ecd4889ebf8980cc0cd85a494 (diff) | |
download | afl++-4c2e375e22a0b3c88380e6dd51dbac5d2c5ac5ff.tar.gz |
little fixes
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/afl-cc.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md index e2cb04f7..94d5008e 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ behaviours and defaults: * a caching of testcases can now be performed and can be modified by editing config.h for TESTCASE_CACHE or by specifying the env variable `AFL_TESTCACHE_SIZE` (in MB). Good values are between 50-500 (default: 50). - * utils/ got renamed to utils/ + * examples/ got renamed to utils/ ## Contents diff --git a/src/afl-cc.c b/src/afl-cc.c index 1cd53f98..50334139 100644 --- a/src/afl-cc.c +++ b/src/afl-cc.c @@ -121,7 +121,8 @@ u8 *getthecwd() { 5. we look into the AFL_PATH define (usually /usr/local/lib/afl) 6. we finally try the current directory - if all this fails - we fail. + if all these attempts fail - we return NULL and the caller has to decide + what to do. */ static u8 *find_object(u8 *obj, u8 *argv0) { |