diff options
| author | Shauren <shauren.trinity@gmail.com> | 2014-07-11 22:24:22 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2014-07-11 22:24:22 +0200 |
| commit | 264363e76c6e6e98d011eea2de5e1d4f2c2b063f (patch) | |
| tree | a9d0d75a1f48b3adf1ab864b9699f08bc0887298 /src | |
| parent | eaee0f5dd02da02365b9a442b6eb27d95e2cd1ce (diff) | |
Core/Misc: Fixed another compiler segmentation fault when compiling AsyncAcceptor with gcc 4.7.2
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/shared/Networking/AsyncAcceptor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/shared/Networking/AsyncAcceptor.h b/src/server/shared/Networking/AsyncAcceptor.h index b698e507954..81e1c1e1da8 100644 --- a/src/server/shared/Networking/AsyncAcceptor.h +++ b/src/server/shared/Networking/AsyncAcceptor.h @@ -53,7 +53,8 @@ private: std::make_shared<T>(std::move(this->_socket))->Start(); } - AsyncAccept(); + // lets slap some more this-> on this so we can fix this bug with gcc 4.7.2 throwing internals in yo face + this->AsyncAccept(); }); } |
