]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix bad check in voicemail functions for ast_inboxcount2_func
authorJonathan Rose <jrose@digium.com>
Tue, 1 May 2012 18:16:27 +0000 (18:16 +0000)
committerJonathan Rose <jrose@digium.com>
Tue, 1 May 2012 18:16:27 +0000 (18:16 +0000)
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)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@364769 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/app.c

index 77f5b355288fec933180059fccf33ff2a7a1ad03..482c27f7870d591dec8b4421c58c583797537ead 100644 (file)
@@ -342,7 +342,7 @@ int ast_app_inboxcount2(const char *mailbox, int *urgentmsgs, int *newmsgs, int
        if (urgentmsgs) {
                *urgentmsgs = 0;
        }
-       if (ast_inboxcount_func) {
+       if (ast_inboxcount2_func) {
                return ast_inboxcount2_func(mailbox, urgentmsgs, newmsgs, oldmsgs);
        }