summaryrefslogtreecommitdiff
path: root/res/res_pjsip_notify.c
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2015-03-26 17:47:42 +0000
committerCorey Farrell <git@cfware.com>2015-03-26 17:47:42 +0000
commitd7fc85e69d5dc23f27ec15dacaa03914ece64e42 (patch)
tree8e4a2663b0d01cf19a79040f0080296e7a5a96e5 /res/res_pjsip_notify.c
parentab674f67b515e78ae73237cf500236135f7ebd21 (diff)
res_pjsip: Enable unload of all modules at shutdown.
* Move most of res_pjsip:module_unload to unload_pjsip to resolve crashes caused by running PJSIP functions from non-PJSIP threads. * Remove call to pjsip_endpt_destroy(ast_pjsip_endpoint), it was causing crashes in some cases. In theory pj_shutdown() should take care of this. * Mark res_pjsip_keepalive and res_pjsip_session as allowed to unload at shutdown. * Resolve leaked config global in res_pjsip_notify. * Unregister pubsub pjsip service module. * Implement cleanup for res_pjsip_session. ASTERISK-24731 #close Reported by: Corey Farrell Review: https://reviewboard.asterisk.org/r/4498/ ........ Merged revisions 433469 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@433470 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_pjsip_notify.c')
-rw-r--r--res/res_pjsip_notify.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/res/res_pjsip_notify.c b/res/res_pjsip_notify.c
index d7e3d803b..e494daf26 100644
--- a/res/res_pjsip_notify.c
+++ b/res/res_pjsip_notify.c
@@ -1021,6 +1021,7 @@ static int unload_module(void)
ast_manager_unregister("PJSIPNotify");
ast_cli_unregister_multiple(cli_options, ARRAY_LEN(cli_options));
aco_info_destroy(&notify_cfg);
+ ao2_global_obj_release(globals);
return 0;
}