Commit 30f7bc99 authored by Eric Biggers's avatar Eric Biggers Committed by Linus Torvalds
Browse files

lib/parser.c: switch match_strdup() over to use kmemdup_nul()

parent 8ec3d768
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -327,10 +327,6 @@ EXPORT_SYMBOL(match_strlcpy);
 */
char *match_strdup(const substring_t *s)
{
	size_t sz = s->to - s->from + 1;
	char *p = kmalloc(sz, GFP_KERNEL);
	if (p)
		match_strlcpy(p, s, sz);
	return p;
	return kmemdup_nul(s->from, s->to - s->from, GFP_KERNEL);
}
EXPORT_SYMBOL(match_strdup);