diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-09-02 10:13:22 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-09-02 10:13:22 -0300 |
commit | 7d365a5c7ab01d3d4d2694c88b20e4d908619901 (patch) | |
tree | b47da0fe79e395563aa9627d857d72ac99d57507 | |
parent | 52a206366d9845c946700bae4f79a8977f092115 (diff) | |
download | lua-7d365a5c7ab01d3d4d2694c88b20e4d908619901.tar.gz lua-7d365a5c7ab01d3d4d2694c88b20e4d908619901.tar.bz2 lua-7d365a5c7ab01d3d4d2694c88b20e4d908619901.zip |
in the (old) expression << ls->fs->f->consts[checkname(ls)] >>, checkname
could realloc f->consts.
-rw-r--r-- | bugs | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,4 @@ | |||
1 | |||
1 | ** lua.stx / llex.c | 2 | ** lua.stx / llex.c |
2 | Tue Dec 2 10:45:48 EDT 1997 | 3 | Tue Dec 2 10:45:48 EDT 1997 |
3 | >> BUG: "lastline" was not reset on function entry, so debug information | 4 | >> BUG: "lastline" was not reset on function entry, so debug information |
@@ -110,3 +111,10 @@ the number of returns of a function. | |||
110 | Wed Aug 18 11:28:38 EST 1999 | 111 | Wed Aug 18 11:28:38 EST 1999 |
111 | >> random(0) and random(x,0) are wrong (0 is read as no argument!). | 112 | >> random(0) and random(x,0) are wrong (0 is read as no argument!). |
112 | (by Dave Bollinger; since 3.1) | 113 | (by Dave Bollinger; since 3.1) |
114 | |||
115 | ** lparser.c | ||
116 | Thu Sep 2 10:07:20 EST 1999 | ||
117 | >> in the (old) expression << ls->fs->f->consts[checkname(ls)] >>, checkname | ||
118 | could realloc f->consts. | ||
119 | (by Supratik Champati; since 3.2 beta) | ||
120 | |||