summaryrefslogtreecommitdiff
path: root/dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch
diff options
context:
space:
mode:
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;