aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-18 10:50:42 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-18 10:50:42 +0100
commit54edf4c9c502d654eb1df194e26810a5999debc1 (patch)
treef272c5c17bc595689e61662c53af8e36339508e2 /lib
parent733318bc2d484b5b214aa215bb54a1beab7fadb4 (diff)
downloadODR-SourceCompanion-54edf4c9c502d654eb1df194e26810a5999debc1.tar.gz
ODR-SourceCompanion-54edf4c9c502d654eb1df194e26810a5999debc1.tar.bz2
ODR-SourceCompanion-54edf4c9c502d654eb1df194e26810a5999debc1.zip
Common 27ac70f: Initialise InetAddress::addr
Diffstat (limited to 'lib')
-rw-r--r--lib/Socket.cpp3
-rw-r--r--lib/Socket.h2
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); };