1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

🚑 hopefully fixed the memory leak

This commit is contained in:
Niels Lohmann
2018-03-08 17:11:15 +01:00
parent 97559bb1b2
commit aa8fc2a41c
2 changed files with 2 additions and 0 deletions

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;
}
}