Commit 3d9cbe37 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Dan Williams

libnvdimm, namespace: Replace kmemdup() with kstrndup()

kstrndup() takes care of '\0' terminator for the strings.

Use it here instead of kmemdup() + explicit terminating the input string.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarDave Jiang <dave.jiang@intel.com>
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent 9065ed12
...@@ -270,11 +270,10 @@ static ssize_t __alt_name_store(struct device *dev, const char *buf, ...@@ -270,11 +270,10 @@ static ssize_t __alt_name_store(struct device *dev, const char *buf,
if (dev->driver || to_ndns(dev)->claim) if (dev->driver || to_ndns(dev)->claim)
return -EBUSY; return -EBUSY;
input = kmemdup(buf, len + 1, GFP_KERNEL); input = kstrndup(buf, len, GFP_KERNEL);
if (!input) if (!input)
return -ENOMEM; return -ENOMEM;
input[len] = '\0';
pos = strim(input); pos = strim(input);
if (strlen(pos) + 1 > NSLABEL_NAME_LEN) { if (strlen(pos) + 1 > NSLABEL_NAME_LEN) {
rc = -EINVAL; rc = -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment