From b2527a9eaa7082c50ce6230e79df88edbced9abb Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Mon, 15 Nov 2010 12:28:19 +0100 Subject: Implement server program flow around GameStart. --- server/connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/connection.cpp') diff --git a/server/connection.cpp b/server/connection.cpp index b64ae11..fd2d257 100644 --- a/server/connection.cpp +++ b/server/connection.cpp @@ -8,7 +8,7 @@ Connection::Connection(boost::asio::io_service& io_service) : socket(io_service) void Connection::handle_read(uint8_t* data, std::size_t bytes, const boost::system::error_code& error) { if(error) { - recv_callback = NULL; + recv_callback.clear(); return; } -- cgit v1.2.3