Remove unnecessary null pointer checks.

This commit is contained in:
Christopher Kohlhoff 2020-04-07 08:55:34 +10:00
parent 19d93672b0
commit 027a524907
2 changed files with 3 additions and 8 deletions

View File

@ -138,13 +138,9 @@ void winrt_ssocket_service_base::destroy(
asio::error_code winrt_ssocket_service_base::close(
winrt_ssocket_service_base::base_implementation_type& impl,
asio::error_code& ec)
{
if (impl.socket_)
{
delete impl.socket_;
impl.socket_ = nullptr;
}
ec = asio::error_code();
return ec;
}

View File

@ -52,7 +52,6 @@ public:
~thread_info_base()
{
for (int i = 0; i < max_mem_index; ++i)
if (reusable_memory_[i])
::operator delete(reusable_memory_[i]);
}