summaryrefslogtreecommitdiff
path: root/extra/htop
diff options
context:
space:
mode:
Diffstat (limited to 'extra/htop')
-rw-r--r--extra/htop/fix-segfault-small-terminal.patch24
-rw-r--r--extra/htop/fix-sort-key-bug.patch15
2 files changed, 0 insertions, 39 deletions
diff --git a/extra/htop/fix-segfault-small-terminal.patch b/extra/htop/fix-segfault-small-terminal.patch
deleted file mode 100644
index c55146492..000000000
--- a/extra/htop/fix-segfault-small-terminal.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- trunk/Meter.c 2011/08/26 20:52:35 229
-+++ trunk/Meter.c 2011/08/26 20:55:09 230
-@@ -264,13 +264,19 @@
-
- w--;
- x++;
-- char bar[w];
-+
-+ if (w < 1) {
-+ attrset(CRT_colors[RESET_COLOR]);
-+ return;
-+ }
-+ char bar[w + 1];
-
- int blockSizes[10];
- for (int i = 0; i < w; i++)
- bar[i] = ' ';
-
-- sprintf(bar + (w-strlen(buffer)), "%s", buffer);
-+ const size_t barOffset = w - MIN(strlen(buffer), w);
-+ snprintf(bar + barOffset, w - barOffset + 1, "%s", buffer);
-
- // First draw in the bar[] buffer...
- double total = 0.0;
diff --git a/extra/htop/fix-sort-key-bug.patch b/extra/htop/fix-sort-key-bug.patch
deleted file mode 100644
index 41a2dd377..000000000
--- a/extra/htop/fix-sort-key-bug.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-From: Roman Kosenko <madkite@gmail.com>
-Date: Thu, 10 Mar 2011 16:23:53 +0200
-Subject: [PATCH] Fix stupid bug with --sort-key
-
---- htop.c.old 2010-11-24 20:45:38.000000000 +0200
-+++ htop.c 2011-03-10 16:32:18.473716667 +0200
-@@ -282,7 +282,7 @@
- printVersionFlag();
- break;
- case 's':
-- if (strcmp(optarg, "help")) {
-+ if (!strcmp(optarg, "help")) {
- for (int j = 1; j < LAST_PROCESSFIELD; j++)
- printf ("%s\n", Process_fieldNames[j]);
- exit(0);