summaryrefslogtreecommitdiffstats
path: root/src/expr_ops.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2013-11-14 15:19:03 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2013-11-18 13:59:47 +0100
commit3cf788a720b30530ca0fe86d40e2e86139e7d48c (patch)
tree9e70cf0787df8e3d7e2aac5d1fa64f29e2304c44 /src/expr_ops.h
parent989b793a3bf689757b2b8f08a1c264743d75fa0f (diff)
expr: fix leak in target and match expressions
Release internal data area for match and target expressions. ==30104== 68 bytes in 1 blocks are definitely lost in loss record 1 of 1 ==30104== at 0x4C2B514: calloc (vg_replace_malloc.c:593) ==30104== by 0x400C2F: main (nft-expr_match-test.c:65) Reported-by: Ana Rey Botello <anarey@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/expr_ops.h')
-rw-r--r--src/expr_ops.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/expr_ops.h b/src/expr_ops.h
index becc85a..26e0b82 100644
--- a/src/expr_ops.h
+++ b/src/expr_ops.h
@@ -23,6 +23,7 @@ struct expr_ops {
const char *name;
uint32_t alloc_len;
int max_attr;
+ void (*free)(struct nft_rule_expr *e);
int (*set)(struct nft_rule_expr *e, uint16_t type, const void *data, uint32_t data_len);
const void *(*get)(const struct nft_rule_expr *e, uint16_t type, uint32_t *data_len);
int (*parse)(struct nft_rule_expr *e, struct nlattr *attr);