Make module loading more safe

This commit is contained in:
Artem Golubikhin 2017-07-22 14:36:13 +03:00 committed by GitHub
parent 6bd2f1feec
commit c6eb62ccbc

View File

@ -79,7 +79,7 @@ extern AMX_NATIVE_INFO g_GameConfigNatives[];
#define DLPROC(m, func) GetProcAddress(m, func)
#define DLFREE(m) FreeLibrary(m)
#else
#define DLLOAD(path) (DLHANDLE)dlopen(path, RTLD_NOW)
#define DLLOAD(path) (DLHANDLE)dlopen(path, RTLD_NOW | RTLD_LOCAL | RTLD_DEEPBIND)
#define DLPROC(m, func) dlsym(m, func)
#define DLFREE(m) dlclose(m)
#endif