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

Fixed commit miss at 41eb4fbf86

This commit is contained in:
Nobuyoshi Nakada 2021-02-23 21:23:46 +09:00
parent 5a4742a0b4
commit 819dd464de
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -6599,17 +6599,18 @@ static struct constat *
constat_handle(HANDLE h)
{
st_data_t data;
struct constat *p;
struct constat *p = NULL;
thread_exclusive(conlist) {
if (!conlist) {
if (console_emulator_p()) {
conlist = conlist_disabled;
return NULL;
continue;
}
conlist = st_init_numtable();
install_vm_exit_handler();
}
else if (conlist == conlist_disabled) {
return NULL;
continue;
}
if (st_lookup(conlist, (st_data_t)h, &data)) {
p = (struct constat *)data;
@ -6626,6 +6627,7 @@ constat_handle(HANDLE h)
}
st_insert(conlist, (st_data_t)h, (st_data_t)p);
}
}
return p;
}