Module: wine Branch: master Commit: e7d265f4b93fe424d6e3c52003fbcb3ebd301f74 URL: https://source.winehq.org/git/wine.git/?a=commit;h=e7d265f4b93fe424d6e3c5200...
Author: Jacek Caban jacek@codeweavers.com Date: Mon Mar 15 18:19:33 2021 +0100
jscript: Raise the stack depth limit.
Previous limit was roughly similar to IE8. Later IE versions allow much larger stacks.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/jscript/engine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/jscript/engine.c b/dlls/jscript/engine.c index b6930a25b65..18dc4c3f139 100644 --- a/dlls/jscript/engine.c +++ b/dlls/jscript/engine.c @@ -54,7 +54,7 @@ typedef struct { } u; } exprval_t;
-static const size_t stack_size = 0x4000; +static const size_t stack_size = 0x40000;
static HRESULT stack_push(script_ctx_t *ctx, jsval_t v) {