mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:27:45 +00:00
LibJS: Call the correct base class in LexicalEnvironment::visit_edges()
We were calling directly up to Cell, skipping over ScopeObject. This made us not mark the scope chain parent for lexical environments, sometimes causing them to get GC'd and use-after-free'd. Found by Fuzzilli. Fixes #5140.
This commit is contained in:
parent
7ec8f83a7f
commit
803a20fa86
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ LexicalEnvironment::~LexicalEnvironment()
|
||||||
|
|
||||||
void LexicalEnvironment::visit_edges(Visitor& visitor)
|
void LexicalEnvironment::visit_edges(Visitor& visitor)
|
||||||
{
|
{
|
||||||
Cell::visit_edges(visitor);
|
Base::visit_edges(visitor);
|
||||||
visitor.visit(m_this_value);
|
visitor.visit(m_this_value);
|
||||||
visitor.visit(m_home_object);
|
visitor.visit(m_home_object);
|
||||||
visitor.visit(m_new_target);
|
visitor.visit(m_new_target);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue