Jelajahi Sumber

LibJS: Revert the free stack limit back to 32 KiB

Timothy Flynn 1 tahun lalu
induk
melakukan
4bdcf9a4b7
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      Userland/Libraries/LibJS/Runtime/VM.h

+ 1 - 1
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.