1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 12:42:30 +04:00

Fuzzers remove excessive free's

thanks to @Willy-JL
This commit is contained in:
MX
2023-05-05 16:09:06 +03:00
parent b0b9e507e7
commit 7ddde7e6ca
2 changed files with 0 additions and 6 deletions

View File

@@ -118,9 +118,6 @@ void flipfrid_free(FlipFridState* flipfrid) {
furi_string_free(flipfrid->main_menu_proto_items[i]); furi_string_free(flipfrid->main_menu_proto_items[i]);
} }
free(flipfrid->data);
free(flipfrid->payload);
// The rest // The rest
free(flipfrid); free(flipfrid);
} }

View File

@@ -120,9 +120,6 @@ void ibtnfuzzer_free(iBtnFuzzerState* ibtnfuzzer) {
furi_string_free(ibtnfuzzer->main_menu_proto_items[i]); furi_string_free(ibtnfuzzer->main_menu_proto_items[i]);
} }
free(ibtnfuzzer->data);
free(ibtnfuzzer->payload);
// The rest // The rest
free(ibtnfuzzer); free(ibtnfuzzer);
} }