From 8cc8c64ef57d88096f667d18dee0c7a143bcc35f Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Fri, 11 Jun 2021 01:12:39 +0200 Subject: [PATCH] Ports/OpenSSL: Remove unnecessary patch --- Ports/openssl/patches/dlfcn_pathbyaddr.patch | 38 -------------------- 1 file changed, 38 deletions(-) delete mode 100644 Ports/openssl/patches/dlfcn_pathbyaddr.patch diff --git a/Ports/openssl/patches/dlfcn_pathbyaddr.patch b/Ports/openssl/patches/dlfcn_pathbyaddr.patch deleted file mode 100644 index 77b57b7e7d..0000000000 --- a/Ports/openssl/patches/dlfcn_pathbyaddr.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff --git a/crypto/dso/dso_dlfcn.c b/crypto/dso/dso_dlfcn.c -index 78df723..c3de9cf 100644 ---- a/crypto/dso/dso_dlfcn.c -+++ b/crypto/dso/dso_dlfcn.c -@@ -421,33 +421,6 @@ static int dladdr(void *address, Dl_info *dl) - - static int dlfcn_pathbyaddr(void *addr, char *path, int sz) - { --# ifdef HAVE_DLINFO -- Dl_info dli; -- int len; -- -- if (addr == NULL) { -- union { -- int (*f) (void *, char *, int); -- void *p; -- } t = { -- dlfcn_pathbyaddr -- }; -- addr = t.p; -- } -- -- if (dladdr(addr, &dli)) { -- len = (int)strlen(dli.dli_fname); -- if (sz <= 0) -- return len + 1; -- if (len >= sz) -- len = sz - 1; -- memcpy(path, dli.dli_fname, len); -- path[len++] = 0; -- return len; -- } -- -- ERR_add_error_data(2, "dlfcn_pathbyaddr(): ", dlerror()); --# endif - return -1; - } -