[libvirt] [PATCH] Bugfix: Check stdoutWatch before removing the handler.

Juerg Haefliger juerg.haefliger at hp.com
Wed Aug 10 15:03:23 UTC 2011


---
 tools/console.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/console.c b/tools/console.c
index 11087e5..171ebc9 100644
--- a/tools/console.c
+++ b/tools/console.c
@@ -95,7 +95,7 @@ virConsoleShutdown(virConsolePtr con)
         virStreamFree(con->st);
     if (con->stdinWatch != -1)
         virEventRemoveHandle(con->stdinWatch);
-    if (con->stdinWatch != -1)
+    if (con->stdoutWatch != -1)
         virEventRemoveHandle(con->stdoutWatch);
     con->stdinWatch = -1;
     con->stdoutWatch = -1;
-- 
1.7.4.1




More information about the libvir-list mailing list