diff options
| author | André Goddard Rosa <andre.goddard@gmail.com> | 2009-12-14 21:01:04 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-15 11:53:32 -0500 |
| commit | 84c95c9acf088c99d8793d78036b67faa5d0b851 (patch) | |
| tree | 170c528099f4f570e48220b546c7fc3e4e06be8a /lib | |
| parent | f653398c86a1c104f0992bd788dd4bb065449be4 (diff) | |
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>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/string.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/string.c b/lib/string.c index 3a912a4e9a6..765566a6a08 100644 --- a/lib/string.c +++ b/lib/string.c | |||
| @@ -364,8 +364,8 @@ char *strstrip(char *s) | |||
| 364 | size_t size; | 364 | size_t size; |
| 365 | char *end; | 365 | char *end; |
| 366 | 366 | ||
| 367 | s = skip_spaces(s); | ||
| 367 | size = strlen(s); | 368 | size = strlen(s); |
| 368 | |||
| 369 | if (!size) | 369 | if (!size) |
| 370 | return s; | 370 | return s; |
| 371 | 371 | ||
| @@ -374,7 +374,7 @@ char *strstrip(char *s) | |||
| 374 | end--; | 374 | end--; |
| 375 | *(end + 1) = '\0'; | 375 | *(end + 1) = '\0'; |
| 376 | 376 | ||
| 377 | return skip_spaces(s); | 377 | return s; |
| 378 | } | 378 | } |
| 379 | EXPORT_SYMBOL(strstrip); | 379 | EXPORT_SYMBOL(strstrip); |
| 380 | 380 | ||
