aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/shared/Networking/AsyncAcceptor.h3
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();
});
}