Blame SOURCES/0092-cgtop-fix-assert-when-not-on-tty.patch

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