aboutsummaryrefslogtreecommitdiff
path: root/src/host/minilua.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix minilua undefined behavior in bit.tohex.v2.0masterMike Pall8 days1-2/+2
| | | | | | | | | | | | Note: this is not a vulnerability! minilua is only used during the LuaJIT build process. It only runs controlled and static Lua code (DynASM), which is entirely contained within this repo and does not trigger the undefined behavior. This change is solely for the benefit of others, who might possibly use minilua for purposes other than running DynASM. Reported by quart27219. #1424
* Fix warnings in minilua.c.Mike Pall2022-06-081-2/+3
|
* Fix minilua vararg stack handling.Mike Pall2021-07-211-1/+1
| | | | | | | | | | Note: this is not exploitable! minilua is only used during the LuaJIT build process. It only runs controlled and static Lua code (DynASM), which is entirely contained within this repo. LuaJIT itself has completely different stack handling code and is not affected either. This change is solely for the benefit of others, who might possibly use minilua for purposes other than running DynASM.
* Fix compiler warnings.Mike Pall2016-03-221-1/+1
| | | | Thanks to Demetri Obenour.
* Fix MinGW build.Mike Pall2013-12-291-0/+1
|
* Add Lua BitOp to minilua.Mike Pall2012-07-081-0/+63
|
* Finally fix target detection for msvcbuild.bat.Mike Pall2012-07-071-202/+2
| | | | Famous last words.
* Add minified Lua interpreter (minilua). Used by the build process.Mike Pall2012-06-091-0/+7906