Fix memory leak on VerifyCC operator

This commit is contained in:
Felipe Zimmerle
2016-06-16 12:40:05 -03:00
parent a4c7d534f2
commit 8b9041c2da
2 changed files with 11 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ class VerifyCC : public Operator {
: Operator(op, param, negation),
m_pc(NULL),
m_pce(NULL) { }
~VerifyCC();
int luhnVerify(const char *ccnumber, int len);
bool evaluate(Transaction *transaction, const std::string &input) override;