safe_strtoXX interface proved to be a bit unconvenient.
Remove it, introduce saner bb_strtoXX. Saved ~350 bytes.
This commit is contained in:
@ -119,7 +119,8 @@ procps_status_t* procps_scan(procps_status_t* sp, int flags)
|
||||
free_procps_scan(sp);
|
||||
return NULL;
|
||||
}
|
||||
if (safe_strtou(entry->d_name, &pid))
|
||||
pid = bb_strtou(entry->d_name, NULL, 10);
|
||||
if (errno)
|
||||
continue;
|
||||
|
||||
/* After this point we have to break, not continue
|
||||
|
Reference in New Issue
Block a user