[asterisk-commits] gtjoseph: branch 13 r432485 - in /branches/13: ./ apps/app_voicemail.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Mar 5 10:38:13 CST 2015
Author: gtjoseph
Date: Thu Mar 5 10:38:09 2015
New Revision: 432485
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=432485
Log:
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/
........
Merged revisions 432484 from http://svn.asterisk.org/svn/asterisk/branches/11
Modified:
branches/13/ (props changed)
branches/13/apps/app_voicemail.c
Propchange: branches/13/
------------------------------------------------------------------------------
Binary property 'branch-11-merged' - no diff available.
Modified: branches/13/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/apps/app_voicemail.c?view=diff&rev=432485&r1=432484&r2=432485
==============================================================================
--- branches/13/apps/app_voicemail.c (original)
+++ branches/13/apps/app_voicemail.c Thu Mar 5 10:38:09 2015
@@ -2446,7 +2446,6 @@
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);
More information about the asterisk-commits
mailing list