mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-31 06:35:03 +01:00
fixed uninitialized member in ctor
This commit is contained in:
parent
1bb795e7ed
commit
eabae863bb
@ -228,7 +228,8 @@ NetworkInterfaceImpl::NetworkInterfaceImpl(const std::string& name,
|
||||
_pointToPoint(false),
|
||||
_up(false),
|
||||
_running(false),
|
||||
_mtu(0)
|
||||
_mtu(0),
|
||||
_type(NetworkInterface::NI_TYPE_OTHER)
|
||||
{
|
||||
_addressList.push_back(AddressTuple(address, subnetMask, broadcastAddress));
|
||||
setPhyParams();
|
||||
|
Loading…
x
Reference in New Issue
Block a user