]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
(MDXMLINT-36) don't add module interfaces before returning from error conditions...
authorMichael Jerris <mike@jerris.com>
Sun, 19 Oct 2008 23:58:43 +0000 (23:58 +0000)
committerMichael Jerris <mike@jerris.com>
Sun, 19 Oct 2008 23:58:43 +0000 (23:58 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10072 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_conference/mod_conference.c
src/mod/applications/mod_voicemail/mod_voicemail.c
src/mod/asr_tts/mod_openmrcp/mod_openmrcp.c
src/mod/formats/mod_shout/mod_shout.c

index 6e418ae11c5dc45dc52d6e41196341919866da7d..e3320b023ded1843e3beed8c4a20fb203d99d7ee 100644 (file)
@@ -5290,11 +5290,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_conference_load)
        }
        api_syntax = p;
 
-       SWITCH_ADD_API(api_interface, "conference", "Conference module commands", conf_api_main, p);
-       SWITCH_ADD_APP(app_interface, global_app_name, global_app_name, NULL, conference_function, NULL, SAF_NONE);
-       SWITCH_ADD_APP(app_interface, "conference_set_auto_outcall", "conference_set_auto_outcall", NULL, conference_auto_function, NULL, SAF_NONE);
-       SWITCH_ADD_CHAT(chat_interface, CONF_CHAT_PROTO, chat_send);
-
        /* create/register custom event message type */
        if (switch_event_reserve_subclass(CONF_EVENT_MAINT) != SWITCH_STATUS_SUCCESS) {
                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't register subclass %s!\n", CONF_EVENT_MAINT);
@@ -5316,6 +5311,11 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_conference_load)
                return SWITCH_STATUS_GENERR;
        }
 
+       SWITCH_ADD_API(api_interface, "conference", "Conference module commands", conf_api_main, p);
+       SWITCH_ADD_APP(app_interface, global_app_name, global_app_name, NULL, conference_function, NULL, SAF_NONE);
+       SWITCH_ADD_APP(app_interface, "conference_set_auto_outcall", "conference_set_auto_outcall", NULL, conference_auto_function, NULL, SAF_NONE);
+       SWITCH_ADD_CHAT(chat_interface, CONF_CHAT_PROTO, chat_send);
+
        send_presence(SWITCH_EVENT_PRESENCE_IN);
 
        globals.running = 1;
index 1d8c772a90c5f7634a0f43d81dcc0f2aad329917..c59655c73e1869a4789f825483d7c33b740e53d5 100644 (file)
@@ -3555,7 +3555,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_voicemail_load)
        }
        /* connect my internal structure to the blank pointer passed to me */
        *module_interface = switch_loadable_module_create_module_interface(pool, modname);
-       SWITCH_ADD_APP(app_interface, "voicemail", "Voicemail", VM_DESC, voicemail_function, VM_USAGE, SAF_NONE);
 
        if (switch_event_bind(modname, SWITCH_EVENT_MESSAGE_QUERY, SWITCH_EVENT_SUBCLASS_ANY, message_query_handler, NULL)
                != SWITCH_STATUS_SUCCESS) {
@@ -3563,6 +3562,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_voicemail_load)
                return SWITCH_STATUS_GENERR;
        }
 
+       SWITCH_ADD_APP(app_interface, "voicemail", "Voicemail", VM_DESC, voicemail_function, VM_USAGE, SAF_NONE);
        SWITCH_ADD_API(commands_api_interface, "voicemail", "voicemail", voicemail_api_function, VOICEMAIL_SYNTAX);
        SWITCH_ADD_API(commands_api_interface, "voicemail_inject", "voicemail_inject", voicemail_inject_api_function, VM_INJECT_USAGE);
        SWITCH_ADD_API(commands_api_interface, "vm_boxcount", "vm_boxcount", boxcount_api_function, BOXCOUNT_SYNTAX);
index c083fa10dc213fbc4844891e88e89af3328010b7..b22bebbe32cbedcc909b4fc9d8b7316af67f1cc1 100644 (file)
@@ -937,6 +937,11 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_openmrcp_load)
        switch_speech_interface_t *speech_interface;
        switch_asr_interface_t *asr_interface;
 
+       /* initialize openmrcp */
+       if (openmrcp_init() != SWITCH_STATUS_SUCCESS) {
+               return SWITCH_STATUS_FALSE;
+       }
+
        /* connect my internal structure to the blank pointer passed to me */
        *module_interface = switch_loadable_module_create_module_interface(pool, modname);
        speech_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_SPEECH_INTERFACE);
@@ -961,11 +966,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_openmrcp_load)
        asr_interface->asr_check_results = openmrcp_asr_check_results;
        asr_interface->asr_get_results = openmrcp_asr_get_results;
 
-       /* initialize openmrcp */
-       if (openmrcp_init() != SWITCH_STATUS_SUCCESS) {
-               return SWITCH_STATUS_FALSE;
-       }
-
        /* indicate that the module should continue to be loaded */
        return SWITCH_STATUS_SUCCESS;
 }
index 67b9382cb6ab0932ec51b249a57f34cbbd2eb06f..008755f7fc54e31682fe1e10c3c8bb217c60322c 100644 (file)
@@ -1458,6 +1458,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_shout_load)
 
        curl_global_init(CURL_GLOBAL_ALL);
 
+       /* connect my internal structure to the blank pointer passed to me */
        *module_interface = switch_loadable_module_create_module_interface(pool, modname);
        file_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_FILE_INTERFACE);
        file_interface->interface_name = modname;
@@ -1470,16 +1471,12 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_shout_load)
        file_interface->file_set_string = shout_file_set_string;
        file_interface->file_get_string = shout_file_get_string;
 
-       /* connect my internal structure to the blank pointer passed to me */
-       //*module_interface = &shout_module_interface;
-
        shout_init();
        mpg123_init();
+       load_config();
 
        SWITCH_ADD_API(shout_api_interface, "telecast", "telecast", telecast_api_function, TELECAST_SYNTAX);
 
-       load_config();
-
        /* indicate that the module should continue to be loaded */
        return SWITCH_STATUS_SUCCESS;
 }