diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-22 21:55:10 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-22 21:55:10 +0200 |
commit | a96ee0abfa2080f7d1b9d586e4303410fe8fbb44 (patch) | |
tree | cc404cc1be1440fa48d8927d969a318616cd7325 | |
parent | Simulators don't simulate in invalid chunks (valgrind error) (diff) | |
download | cuberite-a96ee0abfa2080f7d1b9d586e4303410fe8fbb44.tar cuberite-a96ee0abfa2080f7d1b9d586e4303410fe8fbb44.tar.gz cuberite-a96ee0abfa2080f7d1b9d586e4303410fe8fbb44.tar.bz2 cuberite-a96ee0abfa2080f7d1b9d586e4303410fe8fbb44.tar.lz cuberite-a96ee0abfa2080f7d1b9d586e4303410fe8fbb44.tar.xz cuberite-a96ee0abfa2080f7d1b9d586e4303410fe8fbb44.tar.zst cuberite-a96ee0abfa2080f7d1b9d586e4303410fe8fbb44.zip |
-rw-r--r-- | source/OSSupport/ListenThread.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/OSSupport/ListenThread.cpp b/source/OSSupport/ListenThread.cpp index 70c1159a4..89aa6ea75 100644 --- a/source/OSSupport/ListenThread.cpp +++ b/source/OSSupport/ListenThread.cpp @@ -14,6 +14,7 @@ cListenThread::cListenThread(cCallback & a_Callback, cSocket::eFamily a_Family, super(Printf("ListenThread %s", a_ServiceName.c_str())),
m_Callback(a_Callback),
m_Family(a_Family),
+ m_ShouldReuseAddr(false),
m_ServiceName(a_ServiceName)
{
}
|