summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorYossi Gottlieb <yossigo@gmail.com>2020-08-31 20:42:46 +0300
committerGitHub <noreply@github.com>2020-08-31 20:42:46 +0300
commitd75ad774a92bd7de0b9448be3d622d7a13b7af27 (patch)
tree2a961564475d5eb1bee1277631077f191cc87897 /deps
parent571571ca192ec0b7cc66ca61cd6794dcb6a9d8bc (diff)
downloadredis-d75ad774a92bd7de0b9448be3d622d7a13b7af27.tar.gz
Backport Lua 5.2.2 stack overflow fix. (#7733)
This fixes the issue described in CVE-2014-5461. At this time we cannot confirm that the original issue has a real impact on Redis, but it is included as an extra safety measure.
Diffstat (limited to 'deps')
-rw-r--r--deps/lua/src/ldo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/lua/src/ldo.c b/deps/lua/src/ldo.c
index 514f7a2a3..939940a4c 100644
--- a/deps/lua/src/ldo.c
+++ b/deps/lua/src/ldo.c
@@ -274,7 +274,7 @@ int luaD_precall (lua_State *L, StkId func, int nresults) {
CallInfo *ci;
StkId st, base;
Proto *p = cl->p;
- luaD_checkstack(L, p->maxstacksize);
+ luaD_checkstack(L, p->maxstacksize + p->numparams);
func = restorestack(L, funcr);
if (!p->is_vararg) { /* no varargs? */
base = func + 1;