Fuzzer App: worker

This commit is contained in:
gid9798
2023-06-03 00:32:32 +03:00
parent e31a0c4d6d
commit 70edcf3f6a
10 changed files with 336 additions and 11 deletions

View File

@@ -25,6 +25,8 @@ PacsFuzzerApp* fuzzer_app_alloc() {
app->fuzzer_state.menu_index = 0;
app->fuzzer_state.proto_index = 0;
app->worker = fuzzer_worker_alloc();
// GUI
app->gui = furi_record_open(RECORD_GUI);
@@ -76,6 +78,8 @@ void fuzzer_app_free(PacsFuzzerApp* app) {
// Close records
furi_record_close(RECORD_GUI);
fuzzer_worker_free(app->worker);
free(app);
}