0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

ircd::server: Assertion on tag removal.

This commit is contained in:
Jason Volk 2018-09-04 08:12:47 -07:00
parent a806b2d60b
commit bc88a4cf6d

View file

@ -1614,7 +1614,8 @@ try
while(!done); while(!done);
assert(peer); assert(peer);
peer->handle_tag_done(*this, queue.front()); peer->handle_tag_done(*this, tag);
assert(!queue.empty());
queue.pop_front(); queue.pop_front();
return true; return true;
} }