Commit a9143cdb authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Release shared objects when not debugging, not the other way around

parent b7bcf274
...@@ -1518,7 +1518,7 @@ static void CloseModule( module_handle_t handle ) ...@@ -1518,7 +1518,7 @@ static void CloseModule( module_handle_t handle )
FreeLibrary( handle ); FreeLibrary( handle );
#elif defined(HAVE_DL_DLOPEN) #elif defined(HAVE_DL_DLOPEN)
# ifndef NDEBUG # ifdef NDEBUG
dlclose( handle ); dlclose( handle );
# endif # endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment