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/view.c')
-rw-r--r--applications/gui/view.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/gui/view.c b/applications/gui/view.c
index c0420bd8..e9642d9b 100644
--- a/applications/gui/view.c
+++ b/applications/gui/view.c
@@ -1,7 +1,7 @@
#include "view_i.h"
View* view_alloc() {
- View* view = furi_alloc(sizeof(View));
+ View* view = malloc(sizeof(View));
view->orientation = ViewOrientationHorizontal;
return view;
}
@@ -78,12 +78,12 @@ void view_allocate_model(View* view, ViewModelType type, size_t size) {
furi_assert(view->model == NULL);
view->model_type = type;
if(view->model_type == ViewModelTypeLockFree) {
- view->model = furi_alloc(size);
+ view->model = malloc(size);
} else if(view->model_type == ViewModelTypeLocking) {
- ViewModelLocking* model = furi_alloc(sizeof(ViewModelLocking));
+ ViewModelLocking* model = malloc(sizeof(ViewModelLocking));
model->mutex = osMutexNew(NULL);
furi_check(model->mutex);
- model->data = furi_alloc(size);
+ model->data = malloc(size);
view->model = model;
} else {
furi_assert(false);