mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 07:48:14 +00:00
Merged revisions 43700 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r43700 | russell | 2006-09-26 16:24:39 -0400 (Tue, 26 Sep 2006) | 14 lines 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: https://origsvn.digium.com/svn/asterisk/trunk@43701 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -6506,12 +6506,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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user