mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
LibWeb: Explicitly zero-initialize WindowObject::m_location_object
This commit is contained in:
parent
c66689ea76
commit
7691c7abcb
Notes:
sideshowbarker
2024-07-18 04:08:39 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/7691c7abcb9
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue