From 3252de0f3ef8b3fe57126afd8f6bf006faa9476a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=82=E3=81=8F?= Date: Fri, 26 Mar 2021 11:47:34 +0300 Subject: [PATCH] Fix stack overflow in sd_filesystem service (#390) --- applications/applications.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/applications.c b/applications/applications.c index 55e5c7cb..30285779 100644 --- a/applications/applications.c +++ b/applications/applications.c @@ -67,7 +67,7 @@ const FlipperApplication FLIPPER_SERVICES[] = { #endif #ifdef APP_SD_FILESYSTEM - {.app = sd_filesystem, .name = "sd_filesystem", .stack_size = 1024, .icon = A_Plugins_14}, + {.app = sd_filesystem, .name = "sd_filesystem", .stack_size = 4096, .icon = A_Plugins_14}, #endif #ifdef APP_DOLPHIN