summaryrefslogtreecommitdiffstats
path: root/package/lua/5.3.3/0012-fix-loop-parser.patch
blob: 7b321e5ddf0e27e0407e2cb24527c323dafc3d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Expression list with four or more expressions in a 'for' loop can crash the interpreter.

Fetch from: https://www.lua.org/bugs.html#5.3.3-1

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

--- a/src/lparser.c
+++ b/src/lparser.c
@@ -323,6 +323,8 @@
       luaK_nil(fs, reg, extra);
     }
   }
+  if (nexps > nvars)
+    ls->fs->freereg -= nexps - nvars;  /* remove extra values */
 }
 
 
@@ -1160,11 +1162,8 @@
     int nexps;
     checknext(ls, '=');
     nexps = explist(ls, &e);
-    if (nexps != nvars) {
+    if (nexps != nvars)
       adjust_assign(ls, nvars, nexps, &e);
-      if (nexps > nvars)
-        ls->fs->freereg -= nexps - nvars;  /* remove extra values */
-    }
     else {
       luaK_setoneret(ls->fs, &e);  /* close last expression */
       luaK_storevar(ls->fs, &lh->v, &e);
-- 
OpenPOWER on IntegriCloud