0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 15:33:54 +01:00

ircd::json: Fix error in stack::~object.

This commit is contained in:
Jason Volk 2018-04-03 15:58:47 -07:00
parent c929a39795
commit 39da63828c

View file

@ -569,10 +569,10 @@ noexcept
if(pa)
{
assert(pm == nullptr);
assert(pa->co == nullptr);
assert(pa->ca == nullptr);
assert(pa->co == this);
pa->vc++;
pa->ca = nullptr;
pa->co = nullptr;
return;
}