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 /lib/Socket.h | |
| parent | 733318bc2d484b5b214aa215bb54a1beab7fadb4 (diff) | |
| download | ODR-SourceCompanion-54edf4c9c502d654eb1df194e26810a5999debc1.tar.gz ODR-SourceCompanion-54edf4c9c502d654eb1df194e26810a5999debc1.tar.bz2 ODR-SourceCompanion-54edf4c9c502d654eb1df194e26810a5999debc1.zip | |
Common 27ac70f: Initialise InetAddress::addr
Diffstat (limited to 'lib/Socket.h')
| -rw-r--r-- | lib/Socket.h | 2 | 
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); }; | 
