mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-16 15:01:15 +02: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),
|
_pointToPoint(false),
|
||||||
_up(false),
|
_up(false),
|
||||||
_running(false),
|
_running(false),
|
||||||
_mtu(0)
|
_mtu(0),
|
||||||
|
_type(NetworkInterface::NI_TYPE_OTHER)
|
||||||
{
|
{
|
||||||
_addressList.push_back(AddressTuple(address, subnetMask, broadcastAddress));
|
_addressList.push_back(AddressTuple(address, subnetMask, broadcastAddress));
|
||||||
setPhyParams();
|
setPhyParams();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user