IPv4: Default initialize IPv4Address to 0.0.0.0.

IPv4Address() didn't initialize which made for some confusing debugging.
This commit is contained in:
Andreas Kling 2019-05-10 18:18:54 +02:00
parent c838a2e652
commit 090e14d42c

View file

@ -48,7 +48,7 @@ public:
private:
union {
byte m_data[4];
dword m_data_as_dword;
dword m_data_as_dword { 0 };
};
};