From 53b04eea95a23fe30d1af407ce1e73f816fff5b1 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Wed, 29 Nov 2006 04:26:53 +0000 Subject: [PATCH] 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 --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index f4979ee31a..fa49a3ba37 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -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; }