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

LibWeb: Explicitly zero-initialize WindowObject::m_location_object

This commit is contained in:
Andreas Kling 2021-09-12 16:23:30 +02:00
parent c66689ea76
commit 7691c7abcb

View file

@ -99,7 +99,7 @@ private:
NonnullRefPtr<DOM::Window> m_impl;
LocationObject* m_location_object;
LocationObject* m_location_object { nullptr };
HashMap<String, JS::Object*> m_prototypes;
HashMap<String, JS::NativeFunction*> m_constructors;