mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-20 01:58:51 -04:00
3183. [bug] Added RTLD_GLOBAL flag to dlopen call. [RT #26301]
This commit is contained in:
parent
40615e39ea
commit
4dbd99bcae
2 changed files with 3 additions and 1 deletions
2
CHANGES
2
CHANGES
|
|
@ -40,6 +40,8 @@
|
|||
3232. [bug] Zero zone->curmaster before return in
|
||||
dns_zone_setmasterswithkeys(). [RT #26732]
|
||||
|
||||
3183. [bug] Added RTLD_GLOBAL flag to dlopen call. [RT #26301]
|
||||
|
||||
--- 9.8.2 released ---
|
||||
|
||||
3298. [bug] Named could dereference a NULL pointer in
|
||||
|
|
|
|||
|
|
@ -250,7 +250,7 @@ dlopen_dlz_create(const char *dlzname, unsigned int argc, char *argv[],
|
|||
isc_mutex_init(&cd->lock);
|
||||
|
||||
/* Open the library */
|
||||
dlopen_flags = RTLD_NOW;
|
||||
dlopen_flags = RTLD_NOW|RTLD_GLOBAL;
|
||||
|
||||
#ifdef RTLD_DEEPBIND
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue