mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-28 12:32:05 -06:00
migration: xxx_close will only be called once
No need to test s->fd again, it is tested in the caller. Reviewed-by: Orit Wasserman <owasserm@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
09bac73c13
commit
6c3601361f
4 changed files with 25 additions and 36 deletions
|
@ -44,11 +44,8 @@ static int unix_close(MigrationState *s)
|
|||
{
|
||||
int r = 0;
|
||||
DPRINTF("unix_close\n");
|
||||
if (s->fd != -1) {
|
||||
if (close(s->fd) < 0) {
|
||||
r = -errno;
|
||||
}
|
||||
s->fd = -1;
|
||||
if (close(s->fd) < 0) {
|
||||
r = -errno;
|
||||
}
|
||||
return r;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue