summaryrefslogtreecommitdiffstats
path: root/debian/patches/0010-skip-rtld-deepbind-for-dyndb.diff
blob: 4455d4656b2d037fbc1fa6952e0ed3fd8dd745d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: BIND 9 Package <bind9@package.debian.org>
Date: Fri, 31 Aug 2018 08:42:51 +0000
Subject: skip-rtld-deepbind-for-dyndb

https://bugzilla.redhat.com/show_bug.cgi?id=1410433
https://bugs.launchpad.net/bugs/1769440
---
 lib/dns/dyndb.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/lib/dns/dyndb.c b/lib/dns/dyndb.c
index 93ad795..11ba0f5 100644
--- a/lib/dns/dyndb.c
+++ b/lib/dns/dyndb.c
@@ -133,9 +133,6 @@ load_library(isc_mem_t *mctx, const char *filename, const char *instname,
 		      instname, filename);
 
 	flags = RTLD_NOW|RTLD_LOCAL;
-#ifdef RTLD_DEEPBIND
-	flags |= RTLD_DEEPBIND;
-#endif
 
 	handle = dlopen(filename, flags);
 	if (handle == NULL)