summaryrefslogtreecommitdiffstats
path: root/src/expr.c
diff options
context:
space:
mode:
authorCarlos Falgueras García <carlosfg@riseup.net>2016-07-11 18:07:40 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2016-07-11 19:14:54 +0200
commitbda7102d60bfdab2aa3f36ebd09a119206f264d0 (patch)
treeb53ca0f0bc4aefa48d408276f7b62f62c5a4ede5 /src/expr.c
parent8f1e916b9856785cb835a2d550c9605e86937055 (diff)
src: Fix nftnl_*_get_data() to return the real attribute length
All getters must set the memory size of the attributes, ie. this includes the nul-termination in strings. For references to opaque objects hidden behind the curtain, report a zero size. Signed-off-by: Carlos Falgueras García <carlosfg@riseup.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/expr.c b/src/expr.c
index f802725..e5c1dd3 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -119,6 +119,7 @@ const void *nftnl_expr_get(const struct nftnl_expr *expr,
switch(type) {
case NFTNL_EXPR_NAME:
+ *data_len = strlen(expr->ops->name) + 1;
ret = expr->ops->name;
break;
default: