1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:07:34 +00:00

LibJS: Make sure to always initialize Reference::m_base_value

This commit is contained in:
Andreas Kling 2021-06-25 17:25:55 +02:00
parent 7b28fa99ba
commit 57214268dd

View file

@ -108,7 +108,7 @@ private:
BaseType m_base_type { BaseType::Unresolvable };
union {
Value m_base_value;
Value m_base_value {};
EnvironmentRecord* m_base_environment_record;
};
PropertyName m_name;