diff options
author | van Hauser <vh@thc.org> | 2020-12-09 11:07:14 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-12-09 11:07:14 +0100 |
commit | 39a4fac941177387578ec856aacea2187588fc13 (patch) | |
tree | cef83df4ebfb797eb9f49066c0007a92baa4b035 /src/afl-sharedmem.c | |
parent | 2641082a76ca33e22f0edcededa006f437b646ea (diff) | |
download | afl++-39a4fac941177387578ec856aacea2187588fc13.tar.gz |
better examples
Diffstat (limited to 'src/afl-sharedmem.c')
-rw-r--r-- | src/afl-sharedmem.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/afl-sharedmem.c b/src/afl-sharedmem.c index cef908e0..3e671df5 100644 --- a/src/afl-sharedmem.c +++ b/src/afl-sharedmem.c @@ -252,10 +252,10 @@ u8 *afl_shm_init(sharedmem_t *shm, size_t map_size, shm_str = alloc_printf("%d", shm->shm_id); - /* If somebody is asking us to fuzz instrumented binaries in non-instrumented - mode, we don't want them to detect instrumentation, since we won't be - sending fork server commands. This should be replaced with better - auto-detection later on, perhaps? */ + /* If somebody is asking us to fuzz instrumented binaries in + non-instrumented mode, we don't want them to detect instrumentation, + since we won't be sending fork server commands. This should be replaced + with better auto-detection later on, perhaps? */ setenv(SHM_ENV_VAR, shm_str, 1); |