From: Joshua Colp Date: Mon, 2 Apr 2007 18:55:25 +0000 (+0000) Subject: Increase the maximum size for a string of mailboxes to 1024. (issue #9270 reported... X-Git-Tag: 1.2.18~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e01069962f7eb3b308e57b386fd56cedf7594ad;p=thirdparty%2Fasterisk.git Increase the maximum size for a string of mailboxes to 1024. (issue #9270 reported by rtucker) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@59723 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index bd6e8b8d68..594a638226 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -2434,7 +2434,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_ char fmt[80]; char *context; char ecodes[16] = "#"; - char tmp[256] = "", *tmpptr; + char tmp[1024] = "", *tmpptr; struct ast_vm_user *vmu; struct ast_vm_user svm; char *category = NULL;