diff options
author | yuan <ssspeed00@gmail.com> | 2021-07-14 13:53:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 07:53:20 +0200 |
commit | 7cec158b0eb9b09160e58b289093cf615e2ca429 (patch) | |
tree | e87be8f8477e56785ea901d98d6d039310e98f15 /src/afl-fuzz-one.c | |
parent | b6a9e54c60e98e5c27404253295ce06648bcbd18 (diff) | |
download | afl++-7cec158b0eb9b09160e58b289093cf615e2ca429.tar.gz |
fix havoc comments (#1020)
Diffstat (limited to 'src/afl-fuzz-one.c')
-rw-r--r-- | src/afl-fuzz-one.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/afl-fuzz-one.c b/src/afl-fuzz-one.c index f03249e9..76e64f2a 100644 --- a/src/afl-fuzz-one.c +++ b/src/afl-fuzz-one.c @@ -2102,7 +2102,7 @@ havoc_stage: case 8 ... 9: { - /* Set word to interesting value, randomly choosing endian. */ + /* Set word to interesting value, little endian. */ if (temp_len < 2) { break; } @@ -2119,7 +2119,7 @@ havoc_stage: case 10 ... 11: { - /* Set word to interesting value, randomly choosing endian. */ + /* Set word to interesting value, big endian. */ if (temp_len < 2) { break; } @@ -2136,7 +2136,7 @@ havoc_stage: case 12 ... 13: { - /* Set dword to interesting value, randomly choosing endian. */ + /* Set dword to interesting value, little endian. */ if (temp_len < 4) { break; } @@ -2153,7 +2153,7 @@ havoc_stage: case 14 ... 15: { - /* Set dword to interesting value, randomly choosing endian. */ + /* Set dword to interesting value, big endian. */ if (temp_len < 4) { break; } |