Fix `capture' memory management

The capture action was implemented before the transaction concept.
While partially ported to use the transaction, some of the elements
were not freed correctly. Now it is fully ported to use the class
Transaction.
This commit is contained in:
Felipe Zimmerle
2016-02-16 23:20:23 -03:00
parent e346454374
commit ed8b0c85d7
11 changed files with 17 additions and 37 deletions

View File

@@ -42,7 +42,6 @@ class Pm : public Operator {
bool init(const std::string &file, const char **error) override;
void postOrderTraversal(acmp_btree_node_t *node);
std::list<std::string> matched;
protected:
ACMP *m_p;
};