checkpatch: support wide strings
[linux-2.6-microblaze.git] / fs / cifs / unc.c
index 394aa00..f6fc5e3 100644 (file)
@@ -50,7 +50,6 @@ char *extract_sharename(const char *unc)
 {
        const char *src;
        char *delim, *dst;
-       int len;
 
        /* skip double chars at the beginning */
        src = unc + 2;
@@ -60,10 +59,9 @@ char *extract_sharename(const char *unc)
        if (!delim)
                return ERR_PTR(-EINVAL);
        delim++;
-       len = strlen(delim);
 
        /* caller has to free the memory */
-       dst = kstrndup(delim, len, GFP_KERNEL);
+       dst = kstrdup(delim, GFP_KERNEL);
        if (!dst)
                return ERR_PTR(-ENOMEM);