From 5e01069962f7eb3b308e57b386fd56cedf7594ad Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Mon, 2 Apr 2007 18:55:25 +0000 Subject: [PATCH] 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 --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2