mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-03 04:50:29 +00:00
IPv4: Default initialize IPv4Address to 0.0.0.0.
IPv4Address() didn't initialize which made for some confusing debugging.
This commit is contained in:
parent
c838a2e652
commit
090e14d42c
Notes:
sideshowbarker
2024-07-19 14:11:01 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/090e14d42ce
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ public:
|
|||
private:
|
||||
union {
|
||||
byte m_data[4];
|
||||
dword m_data_as_dword;
|
||||
dword m_data_as_dword { 0 };
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue