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.


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@412074 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin Harwell
2014-04-10 21:07:44 +00:00
parent 29283615f6
commit f7611711f1

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);