Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilk committed Feb 1, 2018
1 parent 1c0dac4 commit 6912f2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ expected format. To build, run `make` in the 'fuzzerside' subdirectory.
The second component is on the JAVA side. It is found in the 'instrumentor' subdirectory.
This component instruments a target application with AFL style administration, plus a component to communicate
with the C side. When later executing the instrumented program, this sets up a TCP server and runs the target
application in a separate thread for each incoming request. It sends back an exit code (succes, timeout, crash
application in a separate thread for each incoming request. It sends back an exit code (success, timeout, crash
or queue full), plus the gathered path information. Any exception escaping main is considered a crash.
To build, run `gradle build` in the 'instrumentor' subdirectory.

Expand Down
4 changes: 2 additions & 2 deletions fuzzerside/interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#define FILE_READ_CHUNK 1024
#define SHM_SIZE 65536
#define SOCKET_READ_CHUNK 1024 // SHM_SIZE should be divisable by this
#define SOCKET_READ_CHUNK 1024 // SHM_SIZE should be divisible by this

#define SHM_ENV_VAR "__AFL_SHM_ID"

Expand Down Expand Up @@ -137,7 +137,7 @@ int main(int argc, char** argv) {
port = argv[curArg+1];
curArg += 2;
} else {
LOG("Unkown flag: %s\n", argv[curArg]);
LOG("Unknown flag: %s\n", argv[curArg]);
printUsageAndDie();
}
} else {
Expand Down

0 comments on commit 6912f2c

Please sign in to comment.