aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-26 20:24:39 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-26 20:24:39 +0000
commit33505e7dde800d4a683704cef0503d1841186e8c (patch)
treebcb74933b8515906299149bf8cf839284d3eebbc /apps
parented75fc9e401c44ef7b162234a8bea01e4bb02145 (diff)
Merged revisions 43699 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r43699 | russell | 2006-09-26 16:23:15 -0400 (Tue, 26 Sep 2006) | 6 lines When parsing the sections of voicemail.conf that contain mailbox definitions, don't introduce a length limit on the definition by using a 256 byte temporary storage buffer. Instead, make the temporary buffer just as big as it needs to be to hold the entire mailbox definition. (fixes BE-68) ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@43700 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index a232f38fe..29bfbbb0c 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -6533,12 +6533,13 @@ static struct ast_vm_user *find_or_create(char *context, char *mbox)
static int append_mailbox(char *context, char *mbox, char *data)
{
/* Assumes lock is already held */
- char tmp[256] = "";
+ char *tmp;
char *stringp;
char *s;
struct ast_vm_user *vmu;
- ast_copy_string(tmp, data, sizeof(tmp));
+ tmp = ast_strdupa(data);
+
if ((vmu = find_or_create(context, mbox))) {
populate_defaults(vmu);