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/gui/modules/text_box.c')
-rwxr-xr-xapplications/gui/modules/text_box.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/gui/modules/text_box.c b/applications/gui/modules/text_box.c
index 7e7eacd6..e2a99c22 100755
--- a/applications/gui/modules/text_box.c
+++ b/applications/gui/modules/text_box.c
@@ -128,7 +128,7 @@ static bool text_box_view_input_callback(InputEvent* event, void* context) {
}
TextBox* text_box_alloc() {
- TextBox* text_box = furi_alloc(sizeof(TextBox));
+ TextBox* text_box = malloc(sizeof(TextBox));
text_box->view = view_alloc();
view_set_context(text_box->view, text_box);
view_allocate_model(text_box->view, ViewModelTypeLocking, sizeof(TextBoxModel));