From 8cfc9e832efc0b43fee69373063f0c7346a6d9a7 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 16 Apr 2019 17:32:09 -0700 Subject: [PATCH] ircd::net: Fix scope_timeout move assignment. --- ircd/net.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/ircd/net.cc b/ircd/net.cc index 78b53fd40..09fcca1c4 100644 --- a/ircd/net.cc +++ b/ircd/net.cc @@ -2390,6 +2390,7 @@ noexcept { this->~scope_timeout(); s = std::move(other.s); + other.s = nullptr; return *this; }