803fb7
From 33088d83ecaf03611e3d20a893e675e4d7c3ae9a Mon Sep 17 00:00:00 2001
803fb7
From: Umut Tezduyar Lindskog <umut.tezduyar@axis.com>
803fb7
Date: Wed, 11 Mar 2015 11:24:18 +0100
803fb7
Subject: [PATCH] cgtop: fix assert when not on tty
803fb7
803fb7
systemd-cgtop --dept=1 -b -n 10 -d 0.1 | cat
803fb7
803fb7
Assertion 'new_length >= 3' failed at src/shared/util.c:3 \
803fb7
595, function ellipsize_mem(). Aborting.
803fb7
Aborted (core dumped)
803fb7
803fb7
(David: add comment)
803fb7
803fb7
(cherry picked from commit 510c4a0f1e7e7efe2897d2fbb9067f121467b103)
803fb7
---
803fb7
 src/cgtop/cgtop.c | 2 +-
803fb7
 1 file changed, 1 insertion(+), 1 deletion(-)
803fb7
803fb7
diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c
803fb7
index 3c7ad4060..f951c37cb 100644
803fb7
--- a/src/cgtop/cgtop.c
803fb7
+++ b/src/cgtop/cgtop.c
803fb7
@@ -447,7 +447,7 @@ static int display(Hashmap *a) {
803fb7
         Group *g;
803fb7
         Group **array;
803fb7
         signed path_columns;
803fb7
-        unsigned rows, n = 0, j, maxtcpu = 0, maxtpath = 0;
803fb7
+        unsigned rows, n = 0, j, maxtcpu = 0, maxtpath = 3; /* 3 for ellipsize() to work properly */
803fb7
         char buffer[MAX3(21, FORMAT_BYTES_MAX, FORMAT_TIMESPAN_MAX)];
803fb7
 
803fb7
         assert(a);