🚑 hopefully fixed the memory leak

This commit is contained in:
Niels Lohmann 2018-03-08 17:11:15 +01:00
parent 97559bb1b2
commit aa8fc2a41c
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
2 changed files with 2 additions and 0 deletions

View file

@ -403,6 +403,7 @@ class parser
if (keep and callback and not callback(depth, parse_event_t::value, result))
{
result.m_value.destroy(result.m_type);
result.m_type = value_t::discarded;
}
}

View file

@ -3526,6 +3526,7 @@ class parser
if (keep and callback and not callback(depth, parse_event_t::value, result))
{
result.m_value.destroy(result.m_type);
result.m_type = value_t::discarded;
}
}