[asterisk-commits] jrose: branch 10 r364777 - in /branches/10: ./ main/app.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue May 1 13:23:13 CDT 2012
Author: jrose
Date: Tue May 1 13:23:08 2012
New Revision: 364777
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=364777
Log:
Fix bad check in voicemail functions for ast_inboxcount2_func
Check looks for ast_inboxcount_func instead of ast_inboxcount2_func on
ast_inboxcount2_func calls.
(closes issue ASTERISK-19718)
Reported by: Corey Farrell
Patches:
ast_app_inboxcount2-null-refcheck.patch uploaded by Corey Farrell (license 5909)
........
Merged revisions 364769 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
branches/10/ (props changed)
branches/10/main/app.c
Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/10/main/app.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/main/app.c?view=diff&rev=364777&r1=364776&r2=364777
==============================================================================
--- branches/10/main/app.c (original)
+++ branches/10/main/app.c Tue May 1 13:23:08 2012
@@ -343,7 +343,7 @@
if (urgentmsgs) {
*urgentmsgs = 0;
}
- if (ast_inboxcount_func) {
+ if (ast_inboxcount2_func) {
return ast_inboxcount2_func(mailbox, urgentmsgs, newmsgs, oldmsgs);
}
More information about the asterisk-commits
mailing list