Don't crash if the mailstream was not created.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@48101 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Joshua Colp 19 years ago
parent 1b872bbcfa
commit 53b04eea95

@ -4648,7 +4648,7 @@ static int open_mailbox(struct vm_state *vms, struct ast_vm_user *vmu, int box)
if(option_debug > 2)
ast_log(LOG_DEBUG,"Before init_mailstream, user is %s\n",vmu->imapuser);
ret = init_mailstream(vms, box);
if (ret != 0) {
if (ret != 0 || !vms->mailstream) {
ast_log (LOG_ERROR,"Could not initialize mailstream\n");
return -1;
}

Loading…
Cancel
Save