[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[libvirt] [PATCH] Fix daemon TCP listen cleanup
- From: Cole Robinson <crobinso redhat com>
- To: Libvirt <libvir-list redhat com>
- Subject: [libvirt] [PATCH] Fix daemon TCP listen cleanup
- Date: Mon, 16 Feb 2009 18:42:34 -0500
Just looking through the code, I stumbled on a bug in a cleanup routine
in the daemon. Patch attached.
Thanks,
Cole
diff --git a/qemud/qemud.c b/qemud/qemud.c
index 6cbba21..6df6368 100644
--- a/qemud/qemud.c
+++ b/qemud/qemud.c
@@ -713,7 +713,7 @@ remoteListenTCP (struct qemud_server *server,
cleanup:
for (i = 0; i < nfds; ++i)
- close(fds[0]);
+ close(fds[i]);
return -1;
}
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]