diff options
author | William Hubbs <williamh@gentoo.org> | 2022-04-02 13:32:11 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2022-04-02 13:32:11 -0500 |
commit | 7d5d9a780a8c895439b85d03a3b6ce70f4dd08c8 (patch) | |
tree | afa2acc56f6696d973212d8b7210e5c1224b97fd /sys-apps | |
parent | sys-apps/openrc: drop 0.43.5-r1 (diff) | |
download | gentoo-7d5d9a780a8c895439b85d03a3b6ce70f4dd08c8.tar.gz gentoo-7d5d9a780a8c895439b85d03a3b6ce70f4dd08c8.tar.bz2 gentoo-7d5d9a780a8c895439b85d03a3b6ce70f4dd08c8.zip |
sys-apps/openrc: drop unneeded patch
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/openrc/files/openrc-0.44.6-fix-checkpath.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/sys-apps/openrc/files/openrc-0.44.6-fix-checkpath.patch b/sys-apps/openrc/files/openrc-0.44.6-fix-checkpath.patch deleted file mode 100644 index e1ef97d981dc..000000000000 --- a/sys-apps/openrc/files/openrc-0.44.6-fix-checkpath.patch +++ /dev/null @@ -1,33 +0,0 @@ -From cc45b55f895d0c21b5ac3e5a65b0bf00f76adeb7 Mon Sep 17 00:00:00 2001 -From: Sam James <sam@gentoo.org> -Date: Fri, 8 Oct 2021 04:52:55 +0100 -Subject: [PATCH 1/2] checkpath: fix allocation size of path buffer - -strlen's return value isn't enough to be used -directly for (x)malloc; it doesn't include -the null byte at the end of the string. - -X-Gentoo-Bug: 816900 -X-Gentoo-Bug-URL: https://bugs.gentoo.org/816900 -Fixes: #459 -Fixes: #462 ---- - src/rc/checkpath.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/rc/checkpath.c b/src/rc/checkpath.c -index bab22692..c4dd7d9d 100644 ---- a/src/rc/checkpath.c -+++ b/src/rc/checkpath.c -@@ -151,7 +151,7 @@ static char *clean_path(char *path) - char *ch; - char *ch2; - char *str; -- str = xmalloc(strlen(path)); -+ str = xmalloc(strlen(path) + 1); - ch = path; - ch2 = str; - while (true) { --- -2.32.0 - |