summaryrefslogtreecommitdiffstats
path: root/lib/Socket.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-18 10:50:51 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-18 10:50:51 +0100
commit7d91eabe90e47e7c316f26566638cc88e1a8c2b4 (patch)
tree2227a9451168624e3b4e12ed0e624a8149712c87 /lib/Socket.h
parente619e89e6cf1c7bfe8199e2014d2c04c02c655c2 (diff)
downloaddabmod-7d91eabe90e47e7c316f26566638cc88e1a8c2b4.tar.gz
dabmod-7d91eabe90e47e7c316f26566638cc88e1a8c2b4.tar.bz2
dabmod-7d91eabe90e47e7c316f26566638cc88e1a8c2b4.zip
Common 27ac70f: Initialise InetAddress::addr
Diffstat (limited to 'lib/Socket.h')
-rw-r--r--lib/Socket.h2
1 files changed, 1 insertions, 1 deletions
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); };