mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-02 10:22:46 +00:00
res_http_websockets: Fix extra unref of module
In websocket_add_protocol_internal is used to add the "echo" protocol, but ast_websocket_remove_protocol is used to remove it. This causes an extra call to ast_module_unref. ASTERISK-24480 #close Reported by: Corey Farrell Review: https://reviewboard.asterisk.org/r/4140/ ........ Merged revisions 427200 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@427201 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1292,7 +1292,7 @@ static int load_module(void)
|
|||||||
|
|
||||||
static int unload_module(void)
|
static int unload_module(void)
|
||||||
{
|
{
|
||||||
ast_websocket_remove_protocol("echo", websocket_echo_callback);
|
websocket_remove_protocol_internal("echo", websocket_echo_callback);
|
||||||
ast_http_uri_unlink(&websocketuri);
|
ast_http_uri_unlink(&websocketuri);
|
||||||
ao2_ref(websocketuri.data, -1);
|
ao2_ref(websocketuri.data, -1);
|
||||||
websocketuri.data = NULL;
|
websocketuri.data = NULL;
|
||||||
|
Reference in New Issue
Block a user