ditch extra memset
This commit is contained in:
parent
d5363f177d
commit
f795058de3
10
top.c
10
top.c
@ -932,9 +932,10 @@ static proc_t **procs_refresh (proc_t **table, int flags)
|
|||||||
|
|
||||||
// i) Allocated Chunks: *Existing* table; refresh + reuse
|
// i) Allocated Chunks: *Existing* table; refresh + reuse
|
||||||
while (curmax < savmax) {
|
while (curmax < savmax) {
|
||||||
if (table[curmax]->cmdline)
|
if (table[curmax]->cmdline) {
|
||||||
free(*table[curmax]->cmdline);
|
free(*table[curmax]->cmdline);
|
||||||
memset(table[curmax], '\0', ENTsz);
|
table[curmax]->cmdline = NULL;
|
||||||
|
}
|
||||||
if (!(ptsk = readproc(PT, table[curmax]))) break;
|
if (!(ptsk = readproc(PT, table[curmax]))) break;
|
||||||
prochlp(ptsk); // tally & complete this proc_t
|
prochlp(ptsk); // tally & complete this proc_t
|
||||||
++curmax;
|
++curmax;
|
||||||
@ -2146,7 +2147,7 @@ static proc_t **summary_show (void)
|
|||||||
if (Mode_altscr) w = w->next;
|
if (Mode_altscr) w = w->next;
|
||||||
} while (w != Curwin);
|
} while (w != Curwin);
|
||||||
|
|
||||||
//* whoa first time, gotta' prime the pump...
|
// whoa first time, gotta' prime the pump...
|
||||||
if (!p_table) {
|
if (!p_table) {
|
||||||
p_table = procs_refresh(NULL, p_flags);
|
p_table = procs_refresh(NULL, p_flags);
|
||||||
putp(Cap_clr_scr);
|
putp(Cap_clr_scr);
|
||||||
@ -2446,8 +2447,7 @@ static void window_show (proc_t **ppt, WIN_t *q, int *lscr)
|
|||||||
else Frame_srtflg = -1;
|
else Frame_srtflg = -1;
|
||||||
Frame_ctimes = CHKw(q, Show_CTIMES); // this and next, only maybe
|
Frame_ctimes = CHKw(q, Show_CTIMES); // this and next, only maybe
|
||||||
Frame_cmdlin = CHKw(q, Show_CMDLIN);
|
Frame_cmdlin = CHKw(q, Show_CMDLIN);
|
||||||
qsort(ppt, (unsigned)Frame_maxtask, sizeof(proc_t *)
|
qsort(ppt, Frame_maxtask, sizeof(proc_t *), Fieldstab[q->sortindx].sort);
|
||||||
, Fieldstab[q->sortindx].sort);
|
|
||||||
#ifdef SORT_SUPRESS
|
#ifdef SORT_SUPRESS
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user