diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-11-18 10:50:42 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-11-18 10:50:42 +0100 |
commit | 54edf4c9c502d654eb1df194e26810a5999debc1 (patch) | |
tree | f272c5c17bc595689e61662c53af8e36339508e2 | |
parent | 733318bc2d484b5b214aa215bb54a1beab7fadb4 (diff) | |
download | ODR-SourceCompanion-54edf4c9c502d654eb1df194e26810a5999debc1.tar.gz ODR-SourceCompanion-54edf4c9c502d654eb1df194e26810a5999debc1.tar.bz2 ODR-SourceCompanion-54edf4c9c502d654eb1df194e26810a5999debc1.zip |
Common 27ac70f: Initialise InetAddress::addr
-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); }; |