mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-13 21:12:26 +00:00
LibJS: Revert the free stack limit back to 32 KiB
This commit is contained in:
parent
8eaf48888e
commit
4bdcf9a4b7
Notes:
sideshowbarker
2024-07-17 00:59:43 +09:00
Author: https://github.com/trflynn89
Commit: 4bdcf9a4b7
Pull-request: https://github.com/SerenityOS/serenity/pull/23274
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ public:
|
||||||
{
|
{
|
||||||
// Address sanitizer (ASAN) used to check for more space but
|
// Address sanitizer (ASAN) used to check for more space but
|
||||||
// currently we can't detect the stack size with it enabled.
|
// 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.
|
// TODO: Rename this function instead of providing a second argument, now that the global object is no longer passed in.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue