]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
automerge commit
authorAutomerge script <automerge@asterisk.org>
Sat, 11 Feb 2006 20:03:02 +0000 (20:03 +0000)
committerAutomerge script <automerge@asterisk.org>
Sat, 11 Feb 2006 20:03:02 +0000 (20:03 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@9627 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_page.c
channels/chan_iax2.c
channels/chan_mgcp.c
channels/chan_sip.c
pbx/pbx_dundi.c

index 39a0eb4bcfac5799bb9b6a1be05031b688cfd2fc..7826d285bee573788e8fd2d14f8639a2af5979ed 100644 (file)
@@ -85,7 +85,7 @@ static void *page_thread(void *data)
 {
        struct calloutdata *cd = data;
        ast_pbx_outgoing_app(cd->tech, AST_FORMAT_SLINEAR, cd->resource, 30000,
-               "MeetMe", cd->meetmeopts, NULL, 0, cd->cidnum, cd->cidname, cd->variables, NULL);
+               "MeetMe", cd->meetmeopts, NULL, 0, cd->cidnum, cd->cidname, cd->variables, NULL, NULL);
        free(cd);
        return NULL;
 }
index 7fb8fdd887d7cdf43443cf8d1dc8ef98f1bcb894..d7dbd66f32fa5d0984bbee81f7f24691f7f20092 100644 (file)
@@ -9506,6 +9506,7 @@ static int __unload_module(void)
        ast_channel_unregister(&iax2_tech);
        delete_users();
        iax_provision_unload();
+       sched_context_destroy(sched);
        return 0;
 }
 
index d3b68e22685142677dea8e9dc6dfd31c9aaa5a2e..7538fd9d74a8c0aa533f6439810ebf43c7f50303 100644 (file)
@@ -4388,6 +4388,7 @@ int unload_module()
        ast_cli_unregister(&cli_debug);
        ast_cli_unregister(&cli_no_debug);
        ast_cli_unregister(&cli_mgcp_reload);
+       sched_context_destroy(sched);
 
        return 0;
 }
index 74b889b9e06a06c86ef53a9974fd09d9a6a1da06..95f58015ca8007b80792e2c8ff0143e7fc2cecbe 100644 (file)
@@ -13381,6 +13381,7 @@ int unload_module()
        clear_realm_authentication(authl);
        clear_sip_domains();
        close(sipsock);
+       sched_context_destroy(sched);
                
        return 0;
 }
index b978d28a6fdc627f796e33222389b20ea97d3370..8f0457296dd36d164d42dd92467a78bd9992add6 100644 (file)
@@ -4726,6 +4726,7 @@ int unload_module(void)
        ast_unregister_switch(&dundi_switch);
        ast_custom_function_unregister(&dundi_function);
        res = ast_unregister_application(app);
+       sched_context_destroy(sched);
        return res;
 }