From: Umut Tezduyar Lindskog Date: Wed, 11 Mar 2015 10:24:18 +0000 (+0100) Subject: cgtop: fix assert when not on tty X-Git-Tag: v219.0~384 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=510c4a0f1e7e7efe2897d2fbb9067f121467b103 cgtop: fix assert when not on tty systemd-cgtop --dept=1 -b -n 10 -d 0.1 | cat Assertion 'new_length >= 3' failed at src/shared/util.c:3 \ 595, function ellipsize_mem(). Aborting. Aborted (core dumped) (David: add comment) --- diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c index 3c7ad4060..f951c37cb 100644 --- a/src/cgtop/cgtop.c +++ b/src/cgtop/cgtop.c @@ -447,7 +447,7 @@ static int display(Hashmap *a) { Group *g; Group **array; signed path_columns; - unsigned rows, n = 0, j, maxtcpu = 0, maxtpath = 0; + unsigned rows, n = 0, j, maxtcpu = 0, maxtpath = 3; /* 3 for ellipsize() to work properly */ char buffer[MAX3(21, FORMAT_BYTES_MAX, FORMAT_TIMESPAN_MAX)]; assert(a);