1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (rb_f_require): do not need to abort if a DLEXT file

is not found.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-02-21 08:25:18 +00:00
parent b3686317a7
commit 5527d3ae59
2 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Fri Feb 21 17:19:27 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* eval.c (rb_f_require): do not need to abort if a DLEXT file
is not found.
Fri Feb 21 12:45:50 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* string.c (rb_str_cmp_m): two small bugs fixed.

3
eval.c
View file

@ -5704,14 +5704,12 @@ rb_f_require(obj, fname)
return load_dyna(feature, tmp);
}
#endif
load_failed(fname);
}
else if (strcmp(DLEXT, ext) == 0) {
tmp = rb_find_file(fname);
if (tmp) {
return load_dyna(fname, tmp);
}
load_failed(fname);
}
#ifdef DLEXT2
else if (strcmp(DLEXT2, ext) == 0) {
@ -5719,7 +5717,6 @@ rb_f_require(obj, fname)
if (tmp) {
return load_dyna(fname, tmp);
}
load_failed(fname);
}
#endif
}