]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 59723 via svnmerge from
authorJoshua Colp <jcolp@digium.com>
Mon, 2 Apr 2007 18:58:24 +0000 (18:58 +0000)
committerJoshua Colp <jcolp@digium.com>
Mon, 2 Apr 2007 18:58:24 +0000 (18:58 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r59723 | file | 2007-04-02 14:55:25 -0400 (Mon, 02 Apr 2007) | 2 lines

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.4@59724 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_voicemail.c

index f3dfb139e2adbf461f332c8f526829a7b7b8413e..2c844f801bbb03b2b93acd0d1842e5978883d306 100644 (file)
@@ -2828,7 +2828,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;
        const char *category = NULL;