We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d902234 commit a3a9c7aCopy full SHA for a3a9c7a
1 file changed
ports/espressif/common-hal/nvm/ByteArray.c
@@ -66,7 +66,7 @@ static esp_err_t get_bytes(nvs_handle_t handle, uint8_t **buf_out) {
66
*buf_out = NULL;
67
return result;
68
}
69
- buf = m_m_alloc(size); // this SHOULD be the same as
+ buf = m_malloc(size); // this SHOULD be the same as
70
if (result == ESP_OK) {
71
result = nvs_get_blob(handle, "data", buf, &size);
72
} else {
0 commit comments