mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 13:14:04 +00:00
Merge pull request #9081 from Zer0xFF/patch-1
explicit use flag `RTLD_LOCAL` with dlopen()
This commit is contained in:
commit
283ff769a6
@ -120,7 +120,7 @@ dylib_t dylib_load(const char *path)
|
||||
}
|
||||
last_dyn_error[0] = 0;
|
||||
#else
|
||||
dylib_t lib = dlopen(path, RTLD_LAZY);
|
||||
dylib_t lib = dlopen(path, RTLD_LAZY | RTLD_LOCAL);
|
||||
#endif
|
||||
return lib;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user