summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-02-03 15:42:17 +0100
committerRobin H. Johnson <robbat2@gentoo.org>2017-02-03 13:37:08 -0800
commit986a8b82d59d77fd1634224f80efc2aadd33fec6 (patch)
tree56b11962d5da7f36fd2de954585ad41c7091e78f /sys-process
parentsys-apps/baselayout-prefix: remove unused patches (diff)
downloadgentoo-986a8b82d59d77fd1634224f80efc2aadd33fec6.tar.gz
gentoo-986a8b82d59d77fd1634224f80efc2aadd33fec6.tar.bz2
gentoo-986a8b82d59d77fd1634224f80efc2aadd33fec6.zip
sys-process/unixtop: remove unused patch
(cherry picked from commit 296b25d4295be555ba76288d2a9332860e571c8e) Fixes: https://github.com/gentoo/gentoo/pull/3790 Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/unixtop/files/unixtop-3.8_beta1-memleak-fix.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/sys-process/unixtop/files/unixtop-3.8_beta1-memleak-fix.patch b/sys-process/unixtop/files/unixtop-3.8_beta1-memleak-fix.patch
deleted file mode 100644
index 1307506ee7af..000000000000
--- a/sys-process/unixtop/files/unixtop-3.8_beta1-memleak-fix.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-http://defect.opensolaris.org/bz/show_bug.cgi?id=5482
-https://sourceforge.net/tracker/?func=detail&aid=2593511&group_id=72892&atid=536042
-
---- top-3.8beta1/machine/m_sunos5.c
-+++ top-3.8beta1/machine/m_sunos5.c
-@@ -2059,11 +2059,11 @@
- /* make sure we have a valid descriptor and the file's current size */
- if (fd >= 0 && fstat(fd, &st) != -1)
- {
-- char *p;
-+ char *p, *p0;
- int i;
-
- /* read the whole file */
-- p = malloc(st.st_size);
-+ p = p0 = malloc(st.st_size);
- (void)pread(fd, p, st.st_size, 0);
-
- /* cache the file descriptor if we can */
-@@ -2148,7 +2148,7 @@
- op->oldtime = TIMESPEC_TO_DOUBLE(lwpp->pr_time);
- op->seen = 1;
- }
-- free(p);
-+ free(p0);
- }
- #endif
-