Fixed commit miss at 41eb4fbf86e7ae9c9ff993e07a19fa44eb74be9b

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;
}