diff options
author | David Carlier <devnexen@gmail.com> | 2020-01-01 10:59:57 +0000 |
---|---|---|
committer | David Carlier <devnexen@gmail.com> | 2020-01-01 10:59:57 +0000 |
commit | 3f2f232fc562ab1fa2b8fc0686afda83d29fa02a (patch) | |
tree | 77a24364aad5a2c0156d6d0397d3ad1d16e7758d | |
parent | 49c6f7245ee9ce88e363d78c263ff16717bd92f5 (diff) | |
download | afl++-3f2f232fc562ab1fa2b8fc0686afda83d29fa02a.tar.gz |
libtokencap, fix mac os process map lookup.
Incrementing base address for next iteration.
-rw-r--r-- | libtokencap/libtokencap.so.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libtokencap/libtokencap.so.c b/libtokencap/libtokencap.so.c index 04825e02..5abed0f6 100644 --- a/libtokencap/libtokencap.so.c +++ b/libtokencap/libtokencap.so.c @@ -142,6 +142,9 @@ static void __tokencap_load_mappings(void) { } + base += size; + size = 0; + } } |