code format

This commit is contained in:
vanhauser-thc
2025-04-10 16:28:03 +02:00
parent 7395223512
commit 8461f860eb
5 changed files with 35 additions and 25 deletions

View File

@ -107,7 +107,7 @@ void afl_state_init(afl_state_t *afl, uint32_t map_size) {
afl->q_testcase_max_cache_size = TESTCASE_CACHE_SIZE * 1048576UL;
afl->q_testcase_max_cache_entries = 64 * 1024;
afl->last_scored_idx = -1;
#ifdef HAVE_AFFINITY
afl->cpu_aff = -1; /* Selected CPU core */
#endif /* HAVE_AFFINITY */
@ -744,7 +744,9 @@ void afl_state_deinit(afl_state_t *afl) {
for (u32 i = 0; i < afl->fsrv.map_size; i++) {
if (afl->top_rated_candidates[i]) {
ck_free(afl->top_rated_candidates[i]);
}
}