aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/xt_helper.c
diff options
context:
space:
mode:
authorGao Feng <fgao@ikuai8.com>2016-09-20 10:31:04 +0800
committerPablo Neira Ayuso <pablo@netfilter.org>2016-09-23 09:30:43 +0200
commitb9d80f83bf8c3485ae53a4f3a715363d764bb0e4 (patch)
treef7c71f7232436811f9f051dfd606b5ff71ac374e /net/netfilter/xt_helper.c
parentnetfilter: Enhance the codes used to get random once (diff)
downloadlinux-dev-b9d80f83bf8c3485ae53a4f3a715363d764bb0e4.tar.xz
linux-dev-b9d80f83bf8c3485ae53a4f3a715363d764bb0e4.zip
netfilter: xt_helper: Use sizeof(variable) instead of literal number
It's better to use sizeof(info->name)-1 as index to force set the string tail instead of literal number '29'. Signed-off-by: Gao Feng <fgao@ikuai8.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/xt_helper.c')
-rw-r--r--net/netfilter/xt_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/xt_helper.c b/net/netfilter/xt_helper.c
index 9f4ab00c8050..805c9f64a04c 100644
--- a/net/netfilter/xt_helper.c
+++ b/net/netfilter/xt_helper.c
@@ -65,7 +65,7 @@ static int helper_mt_check(const struct xt_mtchk_param *par)
par->family);
return ret;
}
- info->name[29] = '\0';
+ info->name[sizeof(info->name) - 1] = '\0';
return 0;
}