aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/textsearch.h
diff options
context:
space:
mode:
authorJoonwoo Park <joonwpark81@gmail.com>2008-07-08 02:38:40 -0700
committerDavid S. Miller <davem@davemloft.net>2008-07-08 02:38:40 -0700
commitdde77e604497dada6f224a685278dfb27747ae52 (patch)
treed4f43497f985e1b8417960640f4be8fe1fc78410 /include/linux/textsearch.h
parenttextsearch: ts_fsm: return error on request for case insensitive search (diff)
downloadwireguard-linux-dde77e604497dada6f224a685278dfb27747ae52.tar.xz
wireguard-linux-dde77e604497dada6f224a685278dfb27747ae52.zip
textsearch: convert kmalloc + memset to kzalloc
convert kmalloc + memset to kzalloc for alloc_ts_config Signed-off-by: Joonwoo Park <joonwpark81@gmail.com> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/textsearch.h')
-rw-r--r--include/linux/textsearch.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/textsearch.h b/include/linux/textsearch.h
index 6c34cf28b7aa..d9a85d616385 100644
--- a/include/linux/textsearch.h
+++ b/include/linux/textsearch.h
@@ -162,11 +162,10 @@ static inline struct ts_config *alloc_ts_config(size_t payload,
{
struct ts_config *conf;
- conf = kmalloc(TS_PRIV_ALIGN(sizeof(*conf)) + payload, gfp_mask);
+ conf = kzalloc(TS_PRIV_ALIGN(sizeof(*conf)) + payload, gfp_mask);
if (conf == NULL)
return ERR_PTR(-ENOMEM);
- memset(conf, 0, TS_PRIV_ALIGN(sizeof(*conf)) + payload);
return conf;
}