diff options
author | Max Rees <maxcrees@me.com> | 2019-06-20 19:01:52 -0400 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2019-06-24 22:09:37 -0400 |
commit | 41ba180fc2dfcdb5516769593fdc06dacfc22e2d (patch) | |
tree | 42a148e851e4c063afbd645554bc1b180d49bf8f /user/exiv2/0001-Amend-fix-for-9-to-apply-to-other-Unix-systems.patch | |
parent | e1786dc80374f7ab320c11c3e79edabe034cb794 (diff) | |
download | packages-41ba180fc2dfcdb5516769593fdc06dacfc22e2d.tar.gz packages-41ba180fc2dfcdb5516769593fdc06dacfc22e2d.tar.bz2 packages-41ba180fc2dfcdb5516769593fdc06dacfc22e2d.tar.xz packages-41ba180fc2dfcdb5516769593fdc06dacfc22e2d.zip |
user/exiv2: [CVE] bump to 0.27.1, add tests
Diffstat (limited to 'user/exiv2/0001-Amend-fix-for-9-to-apply-to-other-Unix-systems.patch')
-rw-r--r-- | user/exiv2/0001-Amend-fix-for-9-to-apply-to-other-Unix-systems.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/user/exiv2/0001-Amend-fix-for-9-to-apply-to-other-Unix-systems.patch b/user/exiv2/0001-Amend-fix-for-9-to-apply-to-other-Unix-systems.patch deleted file mode 100644 index 86412532d..000000000 --- a/user/exiv2/0001-Amend-fix-for-9-to-apply-to-other-Unix-systems.patch +++ /dev/null @@ -1,36 +0,0 @@ -From d775683f579543c35463ab2a8d9425da10d2f016 Mon Sep 17 00:00:00 2001 -From: "A. Wilcox" <AWilcox@Wilcox-Tech.com> -Date: Wed, 4 Oct 2017 00:15:30 -0500 -Subject: [PATCH] Amend fix for #9 to apply to other Unix systems - -At least the musl libc on Linux has the same issue as Mac OS X: the -PTHREAD_RECURSIVE_* static initialiser does not exist. This is a -documented and purposeful omission: - -http://www.openwall.com/lists/musl/2017/02/20/3 - -This commit uses similar logic to the Apple test on other Unixes. ---- - src/actions.cpp | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/src/actions.cpp b/src/actions.cpp -index fe14de4..aa15ec7 100644 ---- a/src/actions.cpp -+++ b/src/actions.cpp -@@ -2051,7 +2051,11 @@ namespace { - static pthread_mutex_t cs = PTHREAD_MUTEX_INITIALIZER; - #endif - #else -- static pthread_mutex_t cs = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP; -+ #if defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP) -+ static pthread_mutex_t cs = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP; -+ #else -+ static pthread_mutex_t cs = PTHREAD_MUTEX_INITIALIZER; -+ #endif - #endif - #endif - --- -2.10.0 - |