Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-04-26 03:20:25 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2008-04-26 03:20:25 +0400
commit16afa38a7b6c837745492a785657c10b1b86f95c (patch)
treed9c83d6a4134bde4ffd1e0408dc6ea9e19e6ddbb /libbb/procps.c
parentb140eddc415742d9ae5a4dc6b310fa59ea38cd19 (diff)
libbb: fix wrong sscanf count check (affects pidof etc)
Diffstat (limited to 'libbb/procps.c')
-rw-r--r--libbb/procps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/procps.c b/libbb/procps.c
index f67f7dcde..8946917a2 100644
--- a/libbb/procps.c
+++ b/libbb/procps.c
@@ -258,7 +258,7 @@ procps_status_t *procps_scan(procps_status_t* sp, int flags)
&sp->start_time,
&vsz,
&rss);
- if (n != 10)
+ if (n != 11)
break;
/* vsz is in bytes and we want kb */
sp->vsz = vsz >> 10;