From 84fe6dcf112eec21940173fec694da653ab77afb Mon Sep 17 00:00:00 2001 From: TimePath Date: Thu, 19 May 2016 21:12:08 +1000 Subject: [PATCH] Use RTLD_DEEPBIND Closes #67 --- radiant/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiant/server.cpp b/radiant/server.cpp index 1904867b..c58ad879 100644 --- a/radiant/server.cpp +++ b/radiant/server.cpp @@ -151,7 +151,7 @@ public: typedef int ( *FunctionPointer )(); DynamicLibrary( const char* filename ){ - m_library = dlopen( filename, RTLD_NOW ); + m_library = dlopen( filename, RTLD_NOW | (RTLD_DEEPBIND + 0) ); } ~DynamicLibrary(){ if ( !failed() ) { -- 2.39.2