mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-12 10:08:07 +00:00
Merge pull request #367 from devnexen/example_network_build_fix
Build fix proposal mainly for Android which did not bother
This commit is contained in:
@ -233,7 +233,7 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
}
|
||||
|
||||
if ((interface = index(argv[1], '%')) != NULL) *interface++ = 0;
|
||||
if ((interface = strchr(argv[1], '%')) != NULL) *interface++ = 0;
|
||||
|
||||
if (argc > 3)
|
||||
if ((max_len = atoi(argv[3])) < 0)
|
||||
|
Reference in New Issue
Block a user