fix: strlen instead of strnlen.

This commit is contained in:
Jerzy Jamroz
2025-03-11 11:31:07 +01:00
committed by Andrew Johnson
parent d87ad35d37
commit 6683d81eb9

View File

@@ -57,7 +57,7 @@ static void atInitHook(const initHookState state)
static struct cmditem *newItem(const char *cmd)
{
const size_t cmd_len = strnlen(cmd, 32768 - 1) + 1;
const size_t cmd_len = strlen(cmd) + 1;
struct cmditem *const item = mallocMustSucceed(sizeof(struct cmditem) + cmd_len, "atInit");
item->cmd = (char *)(item + 1);
memcpy(item->cmd, cmd, cmd_len);