From 4bdcf9a4b7abe0db6c81f2395319923726c4454e Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 20 Feb 2024 14:09:26 -0500 Subject: [PATCH] LibJS: Revert the free stack limit back to 32 KiB --- Userland/Libraries/LibJS/Runtime/VM.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Runtime/VM.h b/Userland/Libraries/LibJS/Runtime/VM.h index 20666f0050..0437e239d2 100644 --- a/Userland/Libraries/LibJS/Runtime/VM.h +++ b/Userland/Libraries/LibJS/Runtime/VM.h @@ -98,7 +98,7 @@ public: { // Address sanitizer (ASAN) used to check for more space but // currently we can't detect the stack size with it enabled. - return m_stack_info.size_free() < 256 * KiB; + return m_stack_info.size_free() < 32 * KiB; } // TODO: Rename this function instead of providing a second argument, now that the global object is no longer passed in.