From: Mark Michelson Date: Tue, 16 Oct 2007 16:40:24 +0000 (+0000) Subject: Fix IMAP compilation error. X-Git-Tag: 1.6.0-beta1~3^2~1176 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=227d678cc7df9511627952d2b1861f61bbb2ae0d;p=thirdparty%2Fasterisk.git Fix IMAP compilation error. (closes issue #10986, reported and patched by snuffy) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@85883 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 904b4f84b9..6d52466a9b 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -2545,7 +2545,7 @@ static int imap_store_file(char *dir, char *mailboxuser, char *mailboxcontext, i ((char *)buf)[len] = '\0'; INIT(&str, mail_string, buf, len); init_mailstream(vms, NEW_FOLDER); - imap_mailbox_name(mailbox, vms, NEW_FOLDER, 1); + imap_mailbox_name(mailbox, sizeof(mailbox), vms, NEW_FOLDER, 1); if(!mail_append(vms->mailstream, mailbox, &str)) ast_log(LOG_ERROR, "Error while sending the message to %s\n", mailbox); fclose(p);