mirror of https://gitee.com/openkylin/libvirt.git
Bugfix: Check stdoutWatch before removing the handler.
This commit is contained in:
parent
cdbb27e3bb
commit
ed009313b1
|
@ -95,7 +95,7 @@ virConsoleShutdown(virConsolePtr con)
|
||||||
virStreamFree(con->st);
|
virStreamFree(con->st);
|
||||||
if (con->stdinWatch != -1)
|
if (con->stdinWatch != -1)
|
||||||
virEventRemoveHandle(con->stdinWatch);
|
virEventRemoveHandle(con->stdinWatch);
|
||||||
if (con->stdinWatch != -1)
|
if (con->stdoutWatch != -1)
|
||||||
virEventRemoveHandle(con->stdoutWatch);
|
virEventRemoveHandle(con->stdoutWatch);
|
||||||
con->stdinWatch = -1;
|
con->stdinWatch = -1;
|
||||||
con->stdoutWatch = -1;
|
con->stdoutWatch = -1;
|
||||||
|
|
Loading…
Reference in New Issue