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>
This commit is contained in:
Jacek Caban 2021-03-15 18:19:33 +01:00 committed by Alexandre Julliard
parent 07cebfc928
commit e7d265f4b9
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{