diff options
Diffstat (limited to 'procps')
-rw-r--r-- | procps/ps.c | 5 | ||||
-rw-r--r-- | procps/top.c | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/procps/ps.c b/procps/ps.c index c5dff18..d7ea9fb 100644 --- a/procps/ps.c +++ b/procps/ps.c @@ -303,9 +303,8 @@ static const ps_out_t out_spec[] = { static ps_out_t* new_out_t(void) { - int i = out_cnt++; - out = xrealloc(out, out_cnt * sizeof(*out)); - return &out[i]; + out = xrealloc_vector(out, 2, out_cnt); + return &out[out_cnt++]; } static const ps_out_t* find_out_spec(const char *name) diff --git a/procps/top.c b/procps/top.c index e13cd15..392a3c8 100644 --- a/procps/top.c +++ b/procps/top.c @@ -814,7 +814,7 @@ int top_main(int argc UNUSED_PARAM, char **argv) int n; if (scan_mask == TOP_MASK) { n = ntop; - top = xrealloc(top, (++ntop) * sizeof(*top)); + top = xrealloc_vector(top, 2, ntop++); top[n].pid = p->pid; top[n].ppid = p->ppid; top[n].vsz = p->vsz; @@ -829,7 +829,8 @@ int top_main(int argc UNUSED_PARAM, char **argv) if (!(p->mapped_ro | p->mapped_rw)) continue; /* kernel threads are ignored */ n = ntop; - top = xrealloc(topmem, (++ntop) * sizeof(*topmem)); + /* No bug here - top and topmem are the same */ + top = xrealloc_vector(topmem, 2, ntop++); strcpy(topmem[n].comm, p->comm); topmem[n].pid = p->pid; topmem[n].vsz = p->mapped_rw + p->mapped_ro; |