[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Memory exhaustion: different Lua functions, error messages and exit codes
- From: Roberto Ierusalimschy <roberto@...>
- Date: Thu, 21 May 2020 17:38:57 -0300
> > lstrlib.c: LUA_ERRRUN : "test.lua:11: resulting string too large"
This error is not caused by memory exhaustion. It means that the
resulting string is too large to be handled by Lua, despite how much
memory is available.
-- Roberto