* dln.c (dln_load): check imported addresses only when compiled

for ruby.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-05-16 16:23:19 +00:00
Родитель b45f04a66f
Коммит d62a9f00b8
1 изменённых файлов: 2 добавлений и 0 удалений

2
dln.c
Просмотреть файл

@ -1265,11 +1265,13 @@ dln_load(const char *file)
goto failed;
}
#if defined _WIN32 && defined RUBY_EXPORT
if (!rb_w32_check_imported(handle, rb_libruby_handle())) {
FreeLibrary(handle);
error = "incompatible library version";
goto failed;
}
#endif
if ((init_fct = (void(*)())GetProcAddress(handle, buf)) == NULL) {
dln_loaderror("%s - %s\n%s", dln_strerror(), buf, file);