summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2007-06-06 19:02:33 +0000
committerMark Michelson <mmichelson@digium.com>2007-06-06 19:02:33 +0000
commite156297c114ef71856eb99fc8401fadb4405ef6b (patch)
tree8d92ccb13e2cb891a074e06a7b5f28030768bfb2 /apps
parent9ede56137871297d212a698145837ac2c3cd9909 (diff)
Fixing a crash wherein Asterisk would segfault when attempting to leave a voicemail when IMAP storage
was enabled. Though no bug was reported to the bugtracker, there was mention of this made as a note on bug 9810 by edhorton. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@67784 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index ffbf06918..50da060c5 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -9280,6 +9280,8 @@ static void vmstate_insert(struct vm_state *vms)
if (!(v = ast_calloc(1, sizeof(*v))))
return;
+
+ v->vms = vms;
if(option_debug > 2)
ast_log(LOG_DEBUG, "Inserting vm_state for user:%s, mailbox %s\n",vms->imapuser,vms->username);