mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user