res_pjsip_pubsub: Set the body generation result to 0 for a valid path

The result of the "ast_sip_pubsub_generate_body_content" was not
set/initialized.  Consequently, the nominal path potentially returned
an invalid value, thus not sending mwi notifications.
........

Merged revisions 412074 from http://svn.asterisk.org/svn/asterisk/branches/12


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@412075 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin Harwell 2014-04-10 21:10:46 +00:00
parent 755696dcd0
commit 6905ac0f5e
1 changed files with 1 additions and 1 deletions

View File

@ -1176,7 +1176,7 @@ int ast_sip_pubsub_generate_body_content(const char *type, const char *subtype,
{
struct ast_sip_pubsub_body_supplement *supplement;
struct ast_sip_pubsub_body_generator *generator;
int res;
int res = 0;
void *body;
generator = find_body_generator_type_subtype(type, subtype);