From fba0f20427f193bd21eb81f969798c324bc6e7ac Mon Sep 17 00:00:00 2001 From: Yogesh Kumar Shukla Date: Tue, 24 Sep 2024 17:45:50 +0530 Subject: [PATCH] Changes Regarding heap-buffer-overflow Change-Id: Ic029d48c99cf159c87eab158cca41b11e2844b78 --- email-core/email-core-smtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/email-core/email-core-smtp.c b/email-core/email-core-smtp.c index 2e1f174..5ae11cf 100755 --- a/email-core/email-core-smtp.c +++ b/email-core/email-core-smtp.c @@ -2268,7 +2268,7 @@ INTERNAL_FUNC int emcore_send_saved_mail(char *multi_user_name, int account_id, goto FINISH_OFF; } - mail_ids = em_malloc(sizeof(int) * total); + mail_ids = em_malloc(sizeof(int) * (total+1)); if (mail_ids == NULL) { EM_DEBUG_EXCEPTION("malloc failed..."); err = EMAIL_ERROR_OUT_OF_MEMORY; -- 2.7.4