Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bug: Long brackets with a huge number of '=' causes overflow | Roberto Ierusalimschy | 2018-12-14 | 1 | -0/+19 |
| | | | | | | | A long bracket with too many equal signs can overflow the 'int' used for the counting and some arithmetic done on the value. Changing the counter to 'size_t' avoids that. (Because what is counted goes to a buffer, an overflow in the counter will first raise a buffer-overflow error.) | ||||
* | added patch for bug 5.3.4-7 | Roberto Ierusalimschy | 2018-06-08 | 1 | -2/+40 |
| | |||||
* | added patches for two bugs (5.3.4-2 and 5.3.4-3) | Roberto Ierusalimschy | 2018-05-24 | 1 | -2/+51 |
| | |||||
* | bug: memory-allocation error when resizing a table can leave it | Roberto Ierusalimschy | 2017-12-13 | 1 | -2/+27 |
| | | | | in an inconsistent state. | ||||
* | bug: 'lua_pushcclosure' should not call the garbage collector when | Roberto Ierusalimschy | 2017-12-06 | 1 | -2/+35 |
| | | | | 'n' is zero. | ||||
* | bug: dead keys with nil values can stay in weak tables | Roberto Ierusalimschy | 2017-08-31 | 1 | -2/+36 |
| | |||||
* | comment in code fragment | Roberto Ierusalimschy | 2017-08-12 | 1 | -3/+3 |
| | |||||
* | bug: Lua does not check GC when creating error messages | Roberto Ierusalimschy | 2017-07-27 | 1 | -9/+54 |
| | |||||
* | detail (extra closing brackets) | Roberto Ierusalimschy | 2017-05-22 | 1 | -3/+2 |
| | |||||
* | bug: Lua crashes when building sequences with more than 2^30 elements. | Roberto Ierusalimschy | 2017-05-19 | 1 | -2/+51 |
| | | | | | bug: Table length computation overflows for sequences larger than 2^31 elements.. | ||||
* | bug: Wrong code for a goto followed by a label inside an 'if' | Roberto Ierusalimschy | 2017-05-05 | 1 | -2/+34 |
| | |||||
* | bug: When a coroutine tries to resume a non-suspended coroutine, | Roberto Ierusalimschy | 2016-10-19 | 1 | -2/+28 |
| | | | | it can do some mess (and break C assertions) before detecting the error. | ||||
* | bug: Lua can generate wrong code in functions with too many constants | Roberto Ierusalimschy | 2016-07-19 | 1 | -2/+26 |
| | |||||
* | new bug: Checking a format for 'os.date' may read pass the format string | Roberto Ierusalimschy | 2016-07-15 | 1 | -0/+23 |
| | |||||
* | bug: expression list with four or more expressions in | Roberto Ierusalimschy | 2016-06-21 | 1 | -0/+39 |
| | | | | a 'for' loop can crash the interpreter. | ||||
* | diff for last bug was against wrong version | Roberto Ierusalimschy | 2016-04-11 | 1 | -3/+3 |
| | |||||
* | bug: 'gmatch' iterator fails when called from a coroutine different | Roberto Ierusalimschy | 2016-03-23 | 1 | -0/+27 |
| | | | | from the one that created it | ||||
* | bug: label between local definitions can mix-up their initializations | Roberto Ierusalimschy | 2016-03-07 | 1 | -0/+33 |
| | |||||
* | Metatable may access its own dealocated field when | Roberto Ierusalimschy | 2016-01-04 | 1 | -1/+48 |
| | | | | it has a self reference in __newindex. | ||||
* | added separator for bugs in 5.3.1 | Roberto Ierusalimschy | 2015-11-13 | 1 | -0/+4 |
| | |||||
* | new entry should not be commented out | Roberto Ierusalimschy | 2015-07-23 | 1 | -2/+0 |
| | |||||
* | bug: 'io.lines' does not check maximum number of options | Roberto Ierusalimschy | 2015-07-20 | 1 | -0/+35 |
| | |||||
* | missing ']]' in long string | Roberto Ierusalimschy | 2015-06-18 | 1 | -0/+2 |
| | |||||
* | bug: return hook may not see correct values for active local variables | Roberto Ierusalimschy | 2015-05-22 | 1 | -0/+13 |
| | | | | when function returns | ||||
* | patch for last bug corrected to be against last released version | Roberto Ierusalimschy | 2015-04-13 | 1 | -15/+15 |
| | | | | (and not against last version in RCS...) | ||||
* | Bug: suspended '__le' metamethod can give wrong result | Roberto Ierusalimschy | 2015-04-10 | 1 | -0/+67 |
| | |||||
* | added patches to two bugs | Roberto Ierusalimschy | 2015-02-23 | 1 | -13/+28 |
| | |||||
* | bug: 'string.format("%f")' can cause a buffer overflow (with long doubles) | Roberto Ierusalimschy | 2015-02-20 | 1 | -2/+92 |
| | | | | | bug: 'debug.getlocal' on a coroutine suspended in a hook can crash the interpreter | ||||
* | bug (in 5.2): Chunk with too many lines can seg. fault | Roberto Ierusalimschy | 2015-02-09 | 1 | -2/+26 |
| | |||||
* | bug: Ephemeron table can wrongly collect entry with strong key | Roberto Ierusalimschy | 2014-09-01 | 1 | -2/+27 |
| | |||||
* | updated several 'fix' fields | Roberto Ierusalimschy | 2014-05-07 | 1 | -15/+13 |
| | |||||
* | marks for releases 5.2.2 and 5.2.3 + correction in last bug's description | Roberto Ierusalimschy | 2014-05-07 | 1 | -3/+13 |
| | |||||
* | bug: compiler can optimize away overflow check in 'table.concat' | Roberto Ierusalimschy | 2014-04-03 | 1 | -5/+16 |
| | |||||
* | new bug: Resuming the running coroutine makes it unyieldable | Roberto Ierusalimschy | 2013-11-08 | 1 | -2/+32 |
| | |||||
* | added patch for last bug | Roberto Ierusalimschy | 2013-11-08 | 1 | -2/+28 |
| | |||||
* | local collection now calls finalizers | Roberto Ierusalimschy | 2013-09-03 | 1 | -3/+16 |
| | |||||
* | bug: GC can collect a long string still in use during parser | Roberto Ierusalimschy | 2013-08-30 | 1 | -2/+37 |
| | |||||
* | When loading a file, Lua may call the reader function again after | Roberto Ierusalimschy | 2013-07-05 | 1 | -2/+78 |
| | | | | it returned end of input + luac listings choke on long strings | ||||
* | added patch to last bug | Roberto Ierusalimschy | 2013-05-16 | 1 | -2/+71 |
| | |||||
* | bug: Wrong error message in some short-cut expressions | Roberto Ierusalimschy | 2013-05-13 | 1 | -2/+18 |
| | |||||
* | bug: Wrong assert when reporting concatenation errors. | Roberto Ierusalimschy | 2013-05-06 | 1 | -2/+25 |
| | |||||
* | stack overflow in vararg functions + garbage collector in recursive loops | Roberto Ierusalimschy | 2013-05-02 | 1 | -7/+70 |
| | |||||
* | details (5.2 corrected to 5.2.0) | Roberto Ierusalimschy | 2013-02-07 | 1 | -4/+4 |
| | |||||
* | Bug: load/loadfile returns wrong result when given an environment | Roberto Ierusalimschy | 2012-12-03 | 1 | -3/+60 |
| | | | | for a binary chunk with no upvalues | ||||
* | 'pcall' may not restore previous error function when | Roberto Ierusalimschy | 2012-10-01 | 1 | -2/+97 |
| | | | | | inside coroutines + Check for garbage collector in function calls does not cover all paths | ||||
* | more regularity for field 'fix' | Roberto Ierusalimschy | 2012-09-11 | 1 | -12/+19 |
| | |||||
* | Some patterns can overflow the C stack, due to recursion. | Roberto Ierusalimschy | 2012-07-13 | 1 | -2/+12 |
| | |||||
* | bugs: Internal Lua values may escape through the debug API +v5.2.1 | Roberto Ierusalimschy | 2012-06-11 | 1 | -2/+39 |
| | | | | Problems when yielding from debug hooks | ||||
* | bug: wrong handling of 'nCcalls' in coroutines | Roberto Ierusalimschy | 2012-05-11 | 1 | -6/+35 |
| | |||||
* | Finalizers may call functions from a dynamic library after | Roberto Ierusalimschy | 2012-04-12 | 1 | -2/+102 |
| | | | | the library has been unloaded |