Index: uspace/lib/cpp/include/__bits/thread/future.hpp
===================================================================
--- uspace/lib/cpp/include/__bits/thread/future.hpp	(revision 6e97265b96eea3b6aee139c2a86b672697a762e9)
+++ uspace/lib/cpp/include/__bits/thread/future.hpp	(revision 3a296071aa8c3908e5d0082398c74a4b64d73391)
@@ -189,9 +189,6 @@
                 if (this->state_->has_exception())
                     this->state_->throw_stored_exception();
-                auto res = std::move(this->state_->get());
-
-                this->release_state_();
-
-                return res;
+
+                return this->state_->get();
             }
     };
