aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-06-06 16:53:43 +0200
committerGitHub <noreply@github.com>2020-06-06 16:53:43 +0200
commita1aef91e39efb4a6578444f30589aaaa51aba274 (patch)
treeaabd44a6a6cb5643ee330edb8e770e472cfe5d8c
parent372206e159f4f3d150543411872319fb8fae0b66 (diff)
parentc2c128dd679f1bce6f2f476c6882041184113a25 (diff)
downloadafl++-a1aef91e39efb4a6578444f30589aaaa51aba274.tar.gz
Merge pull request #395 from toralf/dev
unicorn_mode/samples/persistent/harness.c: fix comment
-rw-r--r--unicorn_mode/samples/persistent/harness.c2
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)