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/u2f/u2f.c')
-rw-r--r--applications/u2f/u2f.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/u2f/u2f.c b/applications/u2f/u2f.c
index 2a1286ef..051dca69 100644
--- a/applications/u2f/u2f.c
+++ b/applications/u2f/u2f.c
@@ -93,7 +93,7 @@ static int u2f_uecc_random(uint8_t* dest, unsigned size) {
}
U2fData* u2f_alloc() {
- return furi_alloc(sizeof(U2fData));
+ return malloc(sizeof(U2fData));
}
void u2f_free(U2fData* U2F) {