mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-18 04:38:08 +00:00
fix
This commit is contained in:
@ -12053,7 +12053,7 @@ int main(int argc, char** argv) {
|
|||||||
gettimeofday(&tv, &tz);
|
gettimeofday(&tv, &tz);
|
||||||
init_seed = tv.tv_sec ^ tv.tv_usec ^ getpid();
|
init_seed = tv.tv_sec ^ tv.tv_usec ^ getpid();
|
||||||
|
|
||||||
while ((opt = getopt(argc, argv, "+i:o:f:m:t:T:dnCB:S:M:x:Qe:p:s:V:")) > 0)
|
while ((opt = getopt(argc, argv, "+i:o:f:m:t:T:dnCB:S:M:x:Qe:p:s:V:L:")) > 0)
|
||||||
|
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
|
|
||||||
@ -12512,6 +12512,9 @@ int main(int argc, char** argv) {
|
|||||||
if (stop_soon) goto stop_fuzzing;
|
if (stop_soon) goto stop_fuzzing;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// real start time, we reset, so this works correctly with -V
|
||||||
|
start_time = get_cur_time();
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
|
|
||||||
u8 skipped_fuzz;
|
u8 skipped_fuzz;
|
||||||
|
Reference in New Issue
Block a user