mirror of https://github.com/xqemu/xqemu.git
vnc: check fd before calling qemu_set_fd_handler2() in vnc_client_write()
Setting fd = -1 to qemu_set_fd_handler2() causes bus error at FD_SET in main_loop_wait(). Signed-off-by: Yoshiaki Tamura <tamura.yoshiaki@lab.ntt.co.jp> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
8b53a86577
commit
ac71103dc6
2
ui/vnc.c
2
ui/vnc.c
|
@ -1184,7 +1184,7 @@ void vnc_client_write(void *opaque)
|
||||||
vnc_lock_output(vs);
|
vnc_lock_output(vs);
|
||||||
if (vs->output.offset) {
|
if (vs->output.offset) {
|
||||||
vnc_client_write_locked(opaque);
|
vnc_client_write_locked(opaque);
|
||||||
} else {
|
} else if (vs->csock != -1) {
|
||||||
qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, NULL, vs);
|
qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, NULL, vs);
|
||||||
}
|
}
|
||||||
vnc_unlock_output(vs);
|
vnc_unlock_output(vs);
|
||||||
|
|
Loading…
Reference in New Issue