summaryrefslogtreecommitdiff
path: root/server/connection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'server/connection.cpp')
-rw-r--r--server/connection.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}