libbb/procps.c: make fast_strtoul_10() stop on '\n' too
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 28 Feb 2012 02:36:49 +0000 (03:36 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 28 Feb 2012 02:36:49 +0000 (03:36 +0100)
This is needed for parsing /proc data on linux 2.4

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/procps.c

index 0e3f2f9..c06ff1d 100644 (file)
@@ -127,7 +127,8 @@ static unsigned long fast_strtoul_16(char **endptr)
        char *str = *endptr;
        unsigned long n = 0;
 
-       while ((c = *str++) != ' ') {
+       /* need to stop on both ' ' and '\n' */
+       while ((c = *str++) > ' ') {
                c = ((c|0x20) - '0');
                if (c > 9)
                        // c = c + '0' - 'a' + 10: