]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - lib/string.c
string: on strstrip(), first remove leading spaces before running over str
[net-next-2.6.git] / lib / string.c
index 3a912a4e9a632a3cf63d1da2f4da6dd502e82ff5..765566a6a0887b3054670b6b59090d4edb3430c3 100644 (file)
@@ -364,8 +364,8 @@ char *strstrip(char *s)
        size_t size;
        char *end;
 
+       s = skip_spaces(s);
        size = strlen(s);
-
        if (!size)
                return s;
 
@@ -374,7 +374,7 @@ char *strstrip(char *s)
                end--;
        *(end + 1) = '\0';
 
-       return skip_spaces(s);
+       return s;
 }
 EXPORT_SYMBOL(strstrip);