From: Matthew Nicholson Date: Fri, 21 Oct 2011 16:42:33 +0000 (+0000) Subject: only process args that exist X-Git-Tag: 10.0.0-rc1~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dff70e96d658f887637f87d6fe089f11a311da91;p=thirdparty%2Fasterisk.git only process args that exist ASTERISK-18395 ........ Merged revisions 341809 from http://svn.asterisk.org/svn/asterisk/branches/1.8 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@341810 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/pbx/pbx_lua.c b/pbx/pbx_lua.c index db6090a600..0dccfe644d 100644 --- a/pbx/pbx_lua.c +++ b/pbx/pbx_lua.c @@ -669,7 +669,7 @@ static void lua_concat_args(lua_State *L, int start, int nargs) { int concat = 0; int i = start + 1; - if (!lua_isnil(L, start)) { + if (start <= nargs && !lua_isnil(L, start)) { lua_pushvalue(L, start); concat += 1; }