[asterisk-commits] file: branch 1.2 r59723 -
/branches/1.2/apps/app_voicemail.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon Apr 2 11:55:25 MST 2007
Author: file
Date: Mon Apr 2 13:55:25 2007
New Revision: 59723
URL: http://svn.digium.com/view/asterisk?view=rev&rev=59723
Log:
Increase the maximum size for a string of mailboxes to 1024. (issue #9270 reported by rtucker)
Modified:
branches/1.2/apps/app_voicemail.c
Modified: branches/1.2/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/apps/app_voicemail.c?view=diff&rev=59723&r1=59722&r2=59723
==============================================================================
--- branches/1.2/apps/app_voicemail.c (original)
+++ branches/1.2/apps/app_voicemail.c Mon Apr 2 13:55:25 2007
@@ -2434,7 +2434,7 @@
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;
More information about the asterisk-commits
mailing list