mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-27 16:15:23 +00:00
qemuMigrationRun: Don't leak @fd
If we are migrating to an UNIX socket, we accept() a connection from qemu and use that FD to set up a tunnel. However, the FD is not closed as often as it should be. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
4749fec10d
commit
cd043390ff
@ -4375,8 +4375,8 @@ qemuMigrationRun(virQEMUDriverPtr driver,
|
||||
if (spec->fwdType != MIGRATION_FWD_DIRECT) {
|
||||
if (iothread && qemuMigrationStopTunnel(iothread, ret < 0) < 0)
|
||||
ret = -1;
|
||||
VIR_FORCE_CLOSE(fd);
|
||||
}
|
||||
VIR_FORCE_CLOSE(fd);
|
||||
|
||||
if (priv->job.completed) {
|
||||
qemuDomainJobInfoUpdateTime(priv->job.completed);
|
||||
|
Loading…
Reference in New Issue
Block a user