summaryrefslogtreecommitdiff
path: root/bugs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* details (5.2 corrected to 5.2.0)Roberto Ierusalimschy2013-02-071-4/+4
|
* Bug: load/loadfile returns wrong result when given an environmentRoberto Ierusalimschy2012-12-031-3/+60
| | | | for a binary chunk with no upvalues
* 'pcall' may not restore previous error function whenRoberto Ierusalimschy2012-10-011-2/+97
| | | | | inside coroutines + Check for garbage collector in function calls does not cover all paths
* more regularity for field 'fix'Roberto Ierusalimschy2012-09-111-12/+19
|
* Some patterns can overflow the C stack, due to recursion.Roberto Ierusalimschy2012-07-131-2/+12
|
* bugs: Internal Lua values may escape through the debug API +v5.2.1Roberto Ierusalimschy2012-06-111-2/+39
| | | | Problems when yielding from debug hooks
* bug: wrong handling of 'nCcalls' in coroutinesRoberto Ierusalimschy2012-05-111-6/+35
|
* Finalizers may call functions from a dynamic library afterRoberto Ierusalimschy2012-04-121-2/+102
| | | | the library has been unloaded
* BUG: memory hoarding when creating Lua hooks for coroutinesRoberto Ierusalimschy2012-01-201-2/+125
| | | | | BUG: Lexical gets confused with some combination of arithmetic operators and hexadecimal numbers
* BUG: parser may collect a prototype while building it.Roberto Ierusalimschy2011-10-211-2/+23
|
* bug: __newindex metamethod may not work if metatable is its ownRoberto Ierusalimschy2011-08-171-2/+29
| | | | metatable.
* bug: problem with optimizations of short-circuit logicRoberto Ierusalimschy2011-01-311-2/+45
|
* patches for last two bugs (string.format and io.read)Roberto Ierusalimschy2010-05-141-5/+42
|
* bug with io.read(op, "*n")Roberto Ierusalimschy2010-04-191-4/+14
|
* 'string.format' may get buffer as an argument when there areRoberto Ierusalimschy2010-04-191-2/+14
| | | | missing arguments and format string is too long
* GC may get stuck during a parser and avoids proper resizing of theRoberto Ierusalimschy2009-11-231-2/+27
| | | | string table, making its lists grow too much and degrading performance.
* "But" -> "Bug" (misspelling)Roberto Ierusalimschy2009-08-051-5/+5
|
* 'debug.getfenv' does not check whether it has an argumentRoberto Ierusalimschy2009-08-041-2/+21
|
* smart use of varargs may create functions that return tooRoberto Ierusalimschy2009-07-021-2/+22
| | | | many arguments and overflow the stack of C functions.
* BUG: 'luaV_settable' may invalidate a reference to a table and tryRoberto Ierusalimschy2009-07-011-5/+46
| | | | to reuse it.
* patch for wrong code generation for some particular boolean expressionsRoberto Ierusalimschy2009-06-151-2/+49
|
* malicious zero-length string in binary code may segfault Lua +Roberto Ierusalimschy2009-04-271-2/+30
| | | | wrong code generation for some particular boolean expressions
* 'module' may change the environment of a C function +Roberto Ierusalimschy2008-08-061-2/+51
| | | | internal macro 'svalue' is wrong
* 'string.byte' gets confused with some out-of-range negative indices +Roberto Ierusalimschy2008-07-111-2/+59
| | | | user-requested GC step may loop forever
* patch for "blow stack" bugRoberto Ierusalimschy2008-05-081-2/+30
|
* patches for some bugsRoberto Ierusalimschy2008-04-041-7/+94
|
* several bugs related to precompiled codeRoberto Ierusalimschy2008-04-011-0/+53
|
* bugs: lua_checkstack may have arithmetic overflow for large 'size' +Roberto Ierusalimschy2008-02-141-0/+61
| | | | unpack with maximum indices may crash due to arithmetic overflow
* corrected name of 'Patrick Donnelly'Roberto Ierusalimschy2008-02-121-1/+1
|
* LUAI_MAXCSTACK must be smaller than -LUA_REGISTRYINDEX +Roberto Ierusalimschy2008-02-111-1/+54
| | | | coroutine.resume pushes element without ensuring stack size
* debug.sethook/gethook may overflow the thread's stackRoberto Ierusalimschy2008-01-211-0/+46
|
* stand-alone interpreter shows incorrect error message when theRoberto Ierusalimschy2007-12-271-0/+21
| | | | 'message' is a coroutine (already fixed in 5.2)
* BUG: lua_setfenv may crash if called over an invalid objectRoberto Ierusalimschy2007-11-281-0/+21
|
* BUG: table.remove removes last element of a table when givenRoberto Ierusalimschy2007-11-261-0/+25
| | | | an out-of-bound index
* BUG: 'gsub' may go wild when wrongly called without its thirdRoberto Ierusalimschy2007-10-291-0/+31
| | | | > argument and with a large subject.
* An error in a module loaded through the '-l' optionRoberto Ierusalimschy2007-09-051-0/+18
| | | | shows no traceback.
* detailRoberto Ierusalimschy2007-08-011-1/+1
|
* BUG: too many variables in an assignment may cause a C stack overflowRoberto Ierusalimschy2007-07-311-0/+28
|
* strong collision for very small numbers used as table keysRoberto Ierusalimschy2007-06-191-0/+17
|
* patch may be a little simplerRoberto Ierusalimschy2007-05-291-4/+10
|
* bug: wrong error message in some concatenationsRoberto Ierusalimschy2007-05-291-1/+22
|
* bug: recursive coroutines may overflow C stackRoberto Ierusalimschy2007-05-251-0/+14
|
* assignment of nil to parameter may be optimized awayRoberto Ierusalimschy2007-05-161-5/+145
| | | | | | | __concat metamethod converts numbers to strings loadlib.c should not access Lua internals code generated for "-nil", "-true", and "-false" is wrong Count hook may be called without being set
* patch for last bugRoberto Ierusalimschy2007-03-091-1/+39
|
* two new bugs + one new patchRoberto Ierusalimschy2007-02-091-3/+108
|
* bug: os.date throws error when result is the empty stringRoberto Ierusalimschy2006-09-191-0/+9
|
* bug: string.format("%") reads past the stringRoberto Ierusalimschy2006-09-181-0/+54
|
* wrong message error in some cases involving closuresRoberto Ierusalimschy2006-08-071-0/+43
|
* bugs now are against 5.1.1Roberto Ierusalimschy2006-07-131-0/+7
|
* bug: wrong limit for list constructorsRoberto Ierusalimschy2006-07-121-0/+32
|