out of memory message

This commit is contained in:
MX 2023-08-20 04:21:09 +03:00
parent 362aa68038
commit 8a3d8bdee7
No known key found for this signature in database
GPG key ID: 7CCC66B7DBDD1C83

View file

@ -481,7 +481,7 @@ void* pvPortMalloc(size_t xWantedSize) {
configASSERT((((size_t)pvReturn) & (size_t)portBYTE_ALIGNMENT_MASK) == 0);
furi_check(pvReturn);
furi_check(pvReturn, "out of memory");
pvReturn = memset(pvReturn, 0, to_wipe);
return pvReturn;
}