Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'applications/loader/loader.c')
-rw-r--r--applications/loader/loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/loader/loader.c b/applications/loader/loader.c
index b8f67a59..552b46f2 100644
--- a/applications/loader/loader.c
+++ b/applications/loader/loader.c
@@ -278,7 +278,7 @@ static uint32_t loader_back_to_primary_menu(void* context) {
}
static Loader* loader_alloc() {
- Loader* instance = furi_alloc(sizeof(Loader));
+ Loader* instance = malloc(sizeof(Loader));
instance->application_thread = furi_thread_alloc();
furi_thread_enable_heap_trace(instance->application_thread);