1
0
Fork 0

string: on strstrip(), first remove leading spaces before running over str

... so that strlen() iterates over a smaller string comprising of the
remaining characters only.

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
André Goddard Rosa 2009-12-14 18:01:04 -08:00 committed by Linus Torvalds
parent f653398c86
commit 84c95c9acf
1 changed files with 2 additions and 2 deletions

View 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);