]> git.proxmox.com Git - mirror_qemu.git/blobdiff - net/socket.c
monitor: Clean up around monitor_handle_fd_param()
[mirror_qemu.git] / net / socket.c
index 68a93cd7e30b523727f8fec035b851757372c946..c30e03f5ae1fa0ddb25061eb12c1ffd0610dab8e 100644 (file)
@@ -695,6 +695,7 @@ static int net_socket_udp_init(NetClientState *peer,
 int net_init_socket(const NetClientOptions *opts, const char *name,
                     NetClientState *peer)
 {
+    Error *err = NULL;
     const NetdevSocketOptions *sock;
 
     assert(opts->kind == NET_CLIENT_OPTIONS_KIND_SOCKET);
@@ -715,8 +716,9 @@ int net_init_socket(const NetClientOptions *opts, const char *name,
     if (sock->has_fd) {
         int fd;
 
-        fd = monitor_handle_fd_param(cur_mon, sock->fd);
+        fd = monitor_fd_param(cur_mon, sock->fd, &err);
         if (fd == -1) {
+            error_report_err(err);
             return -1;
         }
         qemu_set_nonblock(fd);