0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-02 13:48:53 +02:00

ircd::server: Fix dtor condition to cancel request.

This commit is contained in:
Jason Volk 2018-02-27 02:41:48 -08:00
parent aecbf3ebd0
commit cc6cd58755

View file

@ -173,7 +173,7 @@ inline
ircd::server::request::~request() ircd::server::request::~request()
noexcept noexcept
{ {
if(tag && !tag->committed()) if(tag)
cancel(*this); cancel(*this);
if(tag) if(tag)