зеркало из https://github.com/github/ruby.git
variable.c: check length
* variable.c (check_autoload_required): check length first before checking the first byte. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55207 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
d7491e2a63
Коммит
55a39399ff
|
@ -2028,7 +2028,7 @@ check_autoload_required(VALUE mod, ID id, const char **loadingpath)
|
||||||
}
|
}
|
||||||
file = ele->feature;
|
file = ele->feature;
|
||||||
Check_Type(file, T_STRING);
|
Check_Type(file, T_STRING);
|
||||||
if (!RSTRING_PTR(file) || !*RSTRING_PTR(file)) {
|
if (!RSTRING_LEN(file) || !*RSTRING_PTR(file)) {
|
||||||
rb_raise(rb_eArgError, "empty file name");
|
rb_raise(rb_eArgError, "empty file name");
|
||||||
}
|
}
|
||||||
loading = RSTRING_PTR(file);
|
loading = RSTRING_PTR(file);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче