From: Enrico Tassi Date: Tue, 26 Aug 2014 16:20:55 +0200 Subject: Fix stack overflow in vararg functions --- src/ldo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ldo.c b/src/ldo.c index d1bf786..30333bf 100644 --- a/src/ldo.c +++ b/src/ldo.c @@ -274,7 +274,7 @@ int luaD_precall (lua_State *L, StkId func, int nresults) { CallInfo *ci; StkId st, base; Proto *p = cl->p; - luaD_checkstack(L, p->maxstacksize); + luaD_checkstack(L, p->maxstacksize + p->numparams); func = restorestack(L, funcr); base = func + 1; '> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/wget.scm
AgeCommit message (Expand)Author
2023-09-03gnu: wget2: Add more support libraries....* gnu/packages/wget.scm (wget2)[inputs]: Add brotli, nghttp2:lib, xz, zstd:lib. Update TODO comment. [arguments]: Adjust configure-flags to add support for bzip2, lzma compression. Efraim Flashner
2023-09-03gnu: wget2: Update to 2.1.0...* gnu/packages/wget.scm (wget2): Update to 2.1.0 Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Andy Tai
2023-04-16gnu: wget: Update to 1.21.3.24....This update to a non-release version fixes a build failure on i686-linux. * gnu/packages/wget.scm (wget): Update to 1.21.3.24. [origin]: Use a self-hosted tarball created from the latest git commit. Andreas Enge
2022-11-27gnu: wgetpaste: Update to 2.33....* gnu/packages/wget.scm (wgetpaste): Update to 2.33. Efraim Flashner