skip malloc/free in embedded

This commit is contained in:
hathach 2024-04-22 22:33:39 +07:00
parent b8f60da8d8
commit 675daf32e9
No known key found for this signature in database
GPG Key ID: 26FAB84F615C3C52

View File

@ -743,7 +743,7 @@ EmbeddedCli *embeddedCliNew(EmbeddedCliConfig *config) {
bool allocated = false;
if (config->cliBuffer == NULL) {
config->cliBuffer = (CLI_UINT *) malloc(totalSize); // malloc guarantees alignment.
// config->cliBuffer = (CLI_UINT *) malloc(totalSize); // malloc guarantees alignment.
if (config->cliBuffer == NULL)
return NULL;
allocated = true;
@ -887,7 +887,7 @@ void embeddedCliFree(EmbeddedCli *cli) {
PREPARE_IMPL(cli);
if (IS_FLAG_SET(impl->flags, CLI_FLAG_ALLOCATED)) {
// allocation is done in single call to malloc, so need only single free
free(cli);
// free(cli);
}
}