fix dirname to handle input of form "foo/" correctly
authorRich Felker <dalias@aerifal.cx>
Wed, 26 Sep 2012 04:56:07 +0000 (00:56 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 26 Sep 2012 04:56:07 +0000 (00:56 -0400)
also optimized a bit.

src/misc/dirname.c

index 8f70dbb..dd57088 100644 (file)
@@ -4,12 +4,11 @@
 char *dirname(char *s)
 {
        size_t i;
-       if (!s || !*s || !strchr(s, '/')) return ".";
+       if (!s || !*s) return ".";
        i = strlen(s)-1;
-       for (; i&&s[i]=='/'; i--);
-       for (; i&&s[i-1]!='/'; i--);
-       for (; i&&s[i-1]=='/'; i--);
-       if (!i && *s=='/') i++;
-       s[i] = 0;
+       for (; s[i]=='/'; i--) if (!i) return "/";
+       for (; s[i]!='/'; i--) if (!i) return ".";
+       for (; s[i]=='/'; i--) if (!i) return "/";
+       s[i+1] = 0;
        return s;
 }