From: srn Date: Thu, 2 Mar 2006 11:06:28 +0000 (+0000) Subject: Removed unnecessary dlopen flag X-Git-Tag: Tag_09032006~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=db6cd21cd37e1a0f6e706d7c91adf3af6eee285d;p=modules%2Fkernel.git Removed unnecessary dlopen flag --- diff --git a/src/Container/Container_i.cxx b/src/Container/Container_i.cxx index 0ad0d70ad..48b3ac787 100644 --- a/src/Container/Container_i.cxx +++ b/src/Container/Container_i.cxx @@ -308,7 +308,7 @@ Engines_Container_i::load_component_Library(const char* componentName) void* handle; #ifndef WNT - handle = dlopen( impl_name.c_str() , RTLD_LAZY | RTLD_GLOBAL) ; + handle = dlopen( impl_name.c_str() , RTLD_LAZY ) ; #else handle = dlopen( impl_name.c_str() , 0 ) ; #endif