diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Socket.cpp | 3 | ||||
| -rw-r--r-- | lib/Socket.h | 2 | 
2 files changed, 3 insertions, 2 deletions
| diff --git a/lib/Socket.cpp b/lib/Socket.cpp index cba2767..50a12ba 100644 --- a/lib/Socket.cpp +++ b/lib/Socket.cpp @@ -69,7 +69,8 @@ void InetAddress::resolveUdpDestination(const std::string& destination, int port  UDPPacket::UDPPacket() { }  UDPPacket::UDPPacket(size_t initSize) : -    buffer(initSize) +    buffer(initSize), +    address()  { } diff --git a/lib/Socket.h b/lib/Socket.h index c3c37e1..df80b08 100644 --- a/lib/Socket.h +++ b/lib/Socket.h @@ -50,7 +50,7 @@  namespace Socket {  struct InetAddress { -    struct sockaddr_storage addr; +    struct sockaddr_storage addr = {};      struct sockaddr *as_sockaddr() { return reinterpret_cast<sockaddr*>(&addr); }; | 
