fix: Removal of unnecessary item->cmd NULL check.

This commit is contained in:
Jerzy Jamroz
2025-06-20 15:42:47 -05:00
committed by Andrew Johnson
co-authored by Andrew Johnson
parent 3a822ccb0c
commit 04c7cdd33a
+1 -7
View File
@@ -58,13 +58,7 @@ static struct cmditem* newItem(char* cmd)
ERL_ERROR " atInit: "
"failed to allocate memory for cmditem");
item->cmd = (char*)(item + 1);
memcpy(item->cmd, cmd, strlen(cmd) + 1);
if (item->cmd == NULL) {
free(item);
errno = ENOMEM;
return NULL;
}
strlcpy(item->cmd, cmd, strlen(cmd) + 1);
ellAdd(&s_cmdlist, &item->node);