diff options
author | Toralf Förster <toralf.foerster@gmx.de> | 2020-06-06 16:41:40 +0200 |
---|---|---|
committer | Toralf Förster <toralf.foerster@gmx.de> | 2020-06-06 16:41:40 +0200 |
commit | c2c128dd679f1bce6f2f476c6882041184113a25 (patch) | |
tree | aabd44a6a6cb5643ee330edb8e770e472cfe5d8c | |
parent | 372206e159f4f3d150543411872319fb8fae0b66 (diff) | |
download | afl++-c2c128dd679f1bce6f2f476c6882041184113a25.tar.gz |
unicorn_mode/samples/persistent/harness.c: fix comment
Signed-off-by: Toralf Förster <toralf.foerster@gmx.de>
-rw-r--r-- | unicorn_mode/samples/persistent/harness.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unicorn_mode/samples/persistent/harness.c b/unicorn_mode/samples/persistent/harness.c index 2a27e39b..a30af109 100644 --- a/unicorn_mode/samples/persistent/harness.c +++ b/unicorn_mode/samples/persistent/harness.c @@ -219,7 +219,7 @@ int main(int argc, char **argv, char **envp) { // reserve some space for our input data mem_map_checked(uc, INPUT_LOCATION, INPUT_SIZE_MAX, UC_PROT_READ); - // build a "dummy" argv with lenth 2 at 0x10000: + // build a "dummy" argv with length 2 at 0x10000: // 0x10000 argv[0] NULL // 0x10008 argv[1] (char *)0x10016 --. points to the next offset. // 0x10016 argv[1][0], ... <-^ contains the acutal input data. (INPUT_LOCATION + INPUT_OFFSET) |