зеркало из https://github.com/github/ruby.git
Fix potential NULL pointer access [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65650 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
9dd8c528d8
Коммит
67099c4505
|
@ -1406,6 +1406,7 @@ static int
|
|||
get_dyna_var_idx(const rb_iseq_t *iseq, ID id, int *level, int *ls)
|
||||
{
|
||||
int lv = 0, idx = -1;
|
||||
const rb_iseq_t *const topmost_iseq = iseq;
|
||||
|
||||
while (iseq) {
|
||||
idx = get_dyna_var_idx_at_raw(iseq, id);
|
||||
|
@ -1417,7 +1418,7 @@ get_dyna_var_idx(const rb_iseq_t *iseq, ID id, int *level, int *ls)
|
|||
}
|
||||
|
||||
if (idx < 0) {
|
||||
COMPILE_ERROR(iseq, ISEQ_LAST_LINE(iseq),
|
||||
COMPILE_ERROR(topmost_iseq, ISEQ_LAST_LINE(topmost_iseq),
|
||||
"get_dyna_var_idx: -1");
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче