mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-20 03:59:01 +00:00
only process args that exist
ASTERISK-18395 ........ Merged revisions 341809 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 341810 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@341811 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -669,7 +669,7 @@ static void lua_concat_args(lua_State *L, int start, int nargs) {
|
|||||||
int concat = 0;
|
int concat = 0;
|
||||||
int i = start + 1;
|
int i = start + 1;
|
||||||
|
|
||||||
if (!lua_isnil(L, start)) {
|
if (start <= nargs && !lua_isnil(L, start)) {
|
||||||
lua_pushvalue(L, start);
|
lua_pushvalue(L, start);
|
||||||
concat += 1;
|
concat += 1;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user