mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-10 17:21:33 +00:00
fix debug output in stats
This commit is contained in:
parent
7e818e877a
commit
5fa0f8f55b
@ -141,14 +141,26 @@ void write_stats_file(afl_state_t *afl, double bitmap_cvg, double stability,
|
||||
|
||||
if (afl->debug) {
|
||||
|
||||
uint32_t i = 0;
|
||||
fprintf(f, "virgin_bytes :");
|
||||
for (uint32_t i = 0; i < afl->fsrv.map_size; i++)
|
||||
if (afl->virgin_bits[i] != 0xff)
|
||||
for (i = 0; i < afl->fsrv.map_size; i++) {
|
||||
|
||||
if (afl->virgin_bits[i] != 0xff) {
|
||||
|
||||
fprintf(f, " %d[%02x]", i, afl->virgin_bits[i]);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
fprintf(f, "\n");
|
||||
fprintf(f, "var_bytes :");
|
||||
for (uint32_t i = 0; i < afl->fsrv.map_size; i++)
|
||||
if (afl->var_bytes[i]) fprintf(f, " %d", i);
|
||||
for (i = 0; i < afl->fsrv.map_size; i++) {
|
||||
|
||||
if (afl->var_bytes[i]) { fprintf(f, " %d", i); }
|
||||
|
||||
}
|
||||
|
||||
fprintf(f, "\n");
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user