mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-18 09:24:32 -07:00
app_voicemail: Fix compile breaking in app_voicemail with IMAP_STORAGE.
There is a leftover "assert" in app_voicemail/__messagecount that references variables that don't exist. This causes the compile to fail when --enable-dev-mode and IMAP_STORAGE are selected. This patch removes the assert. Tested-by: George Joseph Review: https://reviewboard.asterisk.org/r/4461/ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@432484 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2358,7 +2358,6 @@ static int __messagecount(const char *context, const char *mailbox, const char *
|
||||
free_user(vmu);
|
||||
return -1;
|
||||
}
|
||||
ast_assert(msgnum < vms->msg_array_max);
|
||||
|
||||
/* check if someone is accessing this box right now... */
|
||||
vms_p = get_vm_state_by_imapuser(vmu->imapuser, 1);
|
||||
|
||||
Reference in New Issue
Block a user