aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Socket.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-18 10:47:21 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-18 10:47:21 +0100
commit2152cd24f4176199797673729316fab752daca76 (patch)
tree7a5b2ef24cee1532d1c7540645f533064facabc1 /lib/Socket.h
parent746b45c0e70b78de948334646409133bc2dbcd87 (diff)
downloaddabmux-2152cd24f4176199797673729316fab752daca76.tar.gz
dabmux-2152cd24f4176199797673729316fab752daca76.tar.bz2
dabmux-2152cd24f4176199797673729316fab752daca76.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); };