mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-13 02:28:09 +00:00
quickfix for first big bug that use_stdin was not correctly initialized and could not be set
This commit is contained in:
@ -74,7 +74,7 @@ void detect_file_args(char** argv, u8* prog_in, u8 *use_stdin) {
|
||||
|
||||
if (!prog_in) FATAL("@@ syntax is not supported by this tool.");
|
||||
|
||||
use_stdin = 0;
|
||||
*use_stdin = 0;
|
||||
|
||||
if (prog_in[0] != 0) { // not afl-showmap special case
|
||||
|
||||
@ -109,7 +109,7 @@ void detect_file_args(char** argv, u8* prog_in, u8 *use_stdin) {
|
||||
}
|
||||
|
||||
|
||||
char **create_file_args(int argc, char** argv, u8* prog_in, u8 use_stdin) {
|
||||
char **create_file_args(int argc, char** argv, u8* prog_in, u8 *use_stdin) {
|
||||
|
||||
u32 i = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user