rb_mod_const_get: do not goto into a branch
I'm not necessarily against every goto in general, but jumping into a branch is definitely a bad idea. Better refactor.
This commit is contained in:
parent
1f6e74106f
commit
3b8d9badab
Notes:
git
2020-06-29 11:06:58 +09:00
6
object.c
6
object.c
@ -2504,8 +2504,7 @@ rb_mod_const_get(int argc, VALUE *argv, VALUE mod)
|
||||
pend = path + RSTRING_LEN(name);
|
||||
|
||||
if (p >= pend || !*p) {
|
||||
wrong_name:
|
||||
rb_name_err_raise(wrong_constant_name, mod, name);
|
||||
goto wrong_name;
|
||||
}
|
||||
|
||||
if (p + 2 < pend && p[0] == ':' && p[1] == ':') {
|
||||
@ -2572,6 +2571,9 @@ rb_mod_const_get(int argc, VALUE *argv, VALUE mod)
|
||||
}
|
||||
|
||||
return mod;
|
||||
|
||||
wrong_name:
|
||||
rb_name_err_raise(wrong_constant_name, mod, name);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user