mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 15:15:07 +00:00
LibJS: Disable ASAN during the conservative GC stack scan
This allows the JS fuzzer to survive garbage collection (so we can find more interesting bugs!) Found by oss-fuzz: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=29266
This commit is contained in:
parent
fdd974b7ef
commit
51b880b038
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ void Heap::gather_roots(HashTable<Cell*>& roots)
|
|||
#endif
|
||||
}
|
||||
|
||||
void Heap::gather_conservative_roots(HashTable<Cell*>& roots)
|
||||
__attribute__((no_sanitize("address"))) void Heap::gather_conservative_roots(HashTable<Cell*>& roots)
|
||||
{
|
||||
FlatPtr dummy;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue