Handling key exceptions on the variable itself

This is the first step towords to solve #1697
This commit is contained in:
Felipe Zimmerle
2018-09-20 09:08:08 -03:00
parent 0d53111cb0
commit ee50fea266
54 changed files with 2337 additions and 2080 deletions

View File

@@ -137,8 +137,10 @@ void XML::evaluate(Transaction *t,
std::string *a = new std::string(content);
VariableValue *var = new VariableValue(m_fullName,
a);
if (!m_keyExclusion.toOmit(*m_fullName)) {
l->push_back(var);
}
delete a;
l->push_back(var);
xmlFree(content);
}
}