summaryrefslogtreecommitdiff
path: root/dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-08-07 00:16:33 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-08-07 00:16:33 +0100
commitd162ba1860a88062f4cd61f8b52fc303ba0b2991 (patch)
tree24cd2cf57f3932a24b96e4a0f6666489447e43ba /dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch
parent590b9b7b03bf4651e099949e318755af7cfa81b8 (diff)
gentoo resync : 07.08.2021
Diffstat (limited to 'dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch')
-rw-r--r--dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch b/dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch
deleted file mode 100644
index f41de43b97c5..000000000000
--- a/dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-darwin9 does not malloc on NULL resolved_path
-
-https://github.com/pkgconf/pkgconf/pull/208
-
---- a/libpkgconf/path.c
-+++ b/libpkgconf/path.c
-@@ -92,15 +92,11 @@
- return;
- if (S_ISLNK(st.st_mode))
- {
-- char *linkdest = realpath(path, NULL);
-+ char pathbuf[PATH_MAX];
-+ char *linkdest = realpath(path, pathbuf);
-
- if (linkdest != NULL && stat(linkdest, &st) == -1)
-- {
-- free(linkdest);
- return;
-- }
--
-- free(linkdest);
- }
- if (path_list_contains_entry(path, dirlist, &st))
- return;