Fuzzer App: use FuzzerPayload & smal fixes

This commit is contained in:
gid9798
2023-06-07 11:51:15 +03:00
parent 28f4cd3d3c
commit 6ce098064a
15 changed files with 96 additions and 71 deletions

View File

@@ -26,6 +26,7 @@ PacsFuzzerApp* fuzzer_app_alloc() {
app->fuzzer_state.proto_index = 0;
app->worker = fuzzer_worker_alloc();
app->payload = fuzzer_payload_alloc();
app->file_path = furi_string_alloc();
@@ -114,6 +115,7 @@ void fuzzer_app_free(PacsFuzzerApp* app) {
furi_string_free(app->file_path);
fuzzer_payload_free(app->payload);
fuzzer_worker_free(app->worker);
free(app);