mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 19:28:53 +00:00
Don't kill asterisk if extensions.lua is not present.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@88371 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1277,13 +1277,13 @@ static int load_or_reload_lua_stuff(void)
|
||||
lua_State *L = luaL_newstate();
|
||||
if (!L) {
|
||||
ast_log(LOG_ERROR, "Error allocating lua_State, no memory\n");
|
||||
return AST_MODULE_LOAD_FAILURE;
|
||||
return AST_MODULE_LOAD_DECLINE;
|
||||
}
|
||||
|
||||
if (lua_reload_extensions(L)) {
|
||||
const char *error = lua_tostring(L, -1);
|
||||
ast_log(LOG_ERROR, "Error loading extensions.lua: %s\n", error);
|
||||
res = AST_MODULE_LOAD_FAILURE;
|
||||
res = AST_MODULE_LOAD_DECLINE;
|
||||
}
|
||||
|
||||
lua_close(L);
|
||||
|
Reference in New Issue
Block a user