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/byte_input.c')
-rw-r--r--applications/gui/modules/byte_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/gui/modules/byte_input.c b/applications/gui/modules/byte_input.c
index b116030f..bb18a107 100644
--- a/applications/gui/modules/byte_input.c
+++ b/applications/gui/modules/byte_input.c
@@ -695,7 +695,7 @@ static void byte_input_reset_model_input_data(ByteInputModel* model) {
* @return ByteInput instance pointer
*/
ByteInput* byte_input_alloc() {
- ByteInput* byte_input = furi_alloc(sizeof(ByteInput));
+ ByteInput* byte_input = malloc(sizeof(ByteInput));
byte_input->view = view_alloc();
view_set_context(byte_input->view, byte_input);
view_allocate_model(byte_input->view, ViewModelTypeLocking, sizeof(ByteInputModel));