Skip to content

Commit

Permalink
ui/spice: fix compilation on win32
Browse files Browse the repository at this point in the history
qemu_close_to_socket() renaming left-over.

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1553
Fixes: commit e40283d ("ui/spice: fix SOCKET handling regression")
Reported-by: Jintao Yin <nicememory@gmail.com>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20230322075256.2043812-1-marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
  • Loading branch information
elmarco authored and huth committed Mar 24, 2023
1 parent 07e4804 commit 7b1bde9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/spice-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static void watch_remove(SpiceWatch *watch)
qemu_set_fd_handler(watch->fd, NULL, NULL, NULL);
#ifdef WIN32
/* SOCKET is owned by spice */
qemu_close_to_socket(watch->fd);
qemu_close_socket_osfhandle(watch->fd);
#endif
g_free(watch);
}
Expand Down

0 comments on commit 7b1bde9

Please sign in to comment.