From abf1e0709c3e088568c8c3b39b1638d7fa5824ea Mon Sep 17 00:00:00 2001 From: Richard Mudgett Date: Thu, 26 Oct 2017 12:18:00 -0500 Subject: [PATCH] app_voicemail.c: Fix compiler warning with IMAP build. ASTERISK-27181 Change-Id: Ic4468b49860bd7f67e922baf4c9e96828c184d17 --- apps/app_voicemail.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index a9b8fe3620..ecd423f86a 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -8928,7 +8928,7 @@ static int imap_delete_old_greeting (char *dir, struct vm_state *vms) { char *file, *filename; char *attachment; - char arg[10]; + char arg[11]; int i; BODY* body; int curr_mbox; @@ -8964,7 +8964,7 @@ static int imap_delete_old_greeting (char *dir, struct vm_state *vms) } filename = strsep(&attachment, "."); if (!strcmp(filename, file)) { - sprintf(arg, "%d", i + 1); + snprintf(arg, sizeof(arg), "%d", i + 1); mail_setflag(vms->mailstream, arg, "\\DELETED"); } } -- 2.47.3