From d26f40236196eb2cdf81fa62cbfa28ca89623b28 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sat, 15 Sep 2012 13:19:12 +0100 Subject: syntax: xfs: Rewrite split_strdup function to avoid use of strncpy. Found by 'make syntax-check'. --- daemon/xfs.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/daemon/xfs.c b/daemon/xfs.c index 13ccb11d..e92df62d 100644 --- a/daemon/xfs.c +++ b/daemon/xfs.c @@ -42,19 +42,21 @@ optgroup_xfs_available (void) return prog_exists (str_mkfs_xfs); } +/* Return everything up to the first comma or space in the input + * string, strdup'ing the return value. + */ static char * split_strdup (char *string) { - char *end = string; - while (*end != ' ' && *end != ',' && *end != '\0') end++; - size_t len = end - string; - char *ret = malloc (len + 1); + size_t len; + char *ret; + + len = strcspn (string, " ,"); + ret = strndup (string, len); if (!ret) { reply_with_perror ("malloc"); return NULL; } - strncpy (ret, string, len); - ret[len] = '\0'; return ret; } -- cgit