mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Remove redundant module checks and references.
This removes references that are no longer needed due to automatic references created by module dependencies. In addition this removes most calls to ast_module_check as they were checking modules which are listed as dependencies. Change-Id: I332a6e8383d4c72c8e89d988a184ab8320c4872e
This commit is contained in:
@@ -125,19 +125,12 @@ static int app_exec(struct ast_channel *chan, const char *data)
|
||||
|
||||
static int load_module(void)
|
||||
{
|
||||
int r = 0;
|
||||
|
||||
stasis_app_ref();
|
||||
r |= ast_register_application_xml(stasis, app_exec);
|
||||
return r;
|
||||
return ast_register_application_xml(stasis, app_exec);
|
||||
}
|
||||
|
||||
static int unload_module(void)
|
||||
{
|
||||
int r = 0;
|
||||
r |= ast_unregister_application(stasis);
|
||||
stasis_app_unref();
|
||||
return r;
|
||||
return ast_unregister_application(stasis);
|
||||
}
|
||||
|
||||
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "Stasis dialplan application",
|
||||
|
Reference in New Issue
Block a user