mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-30 01:43:23 +00:00
Fix daemon TCP listen cleanup
This commit is contained in:
parent
cf47347312
commit
125980cb76
@ -1,3 +1,7 @@
|
|||||||
|
Tue Feb 17 09:49:49 EST 2009 Cole Robinson <crobinso@redhat.com>
|
||||||
|
|
||||||
|
* qemud/qemud.c : Fix daemon TCP listen cleanup
|
||||||
|
|
||||||
Tue Feb 17 09:47:05 EST 2009 Cole Robinson <crobinso@redhat.com>
|
Tue Feb 17 09:47:05 EST 2009 Cole Robinson <crobinso@redhat.com>
|
||||||
|
|
||||||
* src/qemu_driver.c : Remove incorrect ATTRIBUTE_UNUSED usage.
|
* src/qemu_driver.c : Remove incorrect ATTRIBUTE_UNUSED usage.
|
||||||
|
@ -713,7 +713,7 @@ remoteListenTCP (struct qemud_server *server,
|
|||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
for (i = 0; i < nfds; ++i)
|
for (i = 0; i < nfds; ++i)
|
||||||
close(fds[0]);
|
close(fds[i]);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user