* ruby.c (require_libraries): req_list may be NULL. [ruby-dev:35008]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-06-09 06:40:02 +00:00
Родитель e39b93b86e
Коммит 66054b9e3d
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Mon Jun 9 15:37:38 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* ruby.c (require_libraries): req_list may be NULL. [ruby-dev:35008]
Mon Jun 9 14:18:01 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm_core.h (struct rb_vm_struct): moved src_encoding_index,

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

@ -455,7 +455,7 @@ require_libraries(struct cmdline_options *opt)
ID require = rb_intern("require");
Init_ext(); /* should be called here for some reason :-( */
while (RARRAY_LEN(list)) {
while (list && RARRAY_LEN(list) > 0) {
VALUE feature = rb_ary_shift(list);
rb_funcall2(rb_vm_top_self(), require, 1, &feature);
}