Fixed commit miss at 41eb4fbf86e7ae9c9ff993e07a19fa44eb74be9b
This commit is contained in:
parent
5a4742a0b4
commit
819dd464de
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user