Commit e7d265f4 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Raise the stack depth limit.

Previous limit was roughly similar to IE8. Later IE versions allow much larger stacks. Signed-off-by: 's avatarJacek Caban <jacek@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 07cebfc9
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment