net/virtio-user: fix uninitialized reply-ack variable
authorChenbo Xia <chenbo.xia@intel.com>
Tue, 14 Jul 2020 11:03:05 +0000 (11:03 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 17 Jul 2020 16:21:21 +0000 (18:21 +0200)
This patch fixes an issue that uninitialized has_reply_ack
is used for setting message flags.

Coverity issue: 360834
Fixes: c60208dd6384 ("net/virtio-user: support reply-ack")

Signed-off-by: Chenbo Xia <chenbo.xia@intel.com>
Acked-by: Adrian Moreno <amorenoz@redhat.com>
drivers/net/virtio/virtio_user/vhost_user.c

index 631d0e3..ad48baf 100644 (file)
@@ -254,7 +254,7 @@ vhost_user_sock(struct virtio_user_dev *dev,
        struct vhost_user_msg msg;
        struct vhost_vring_file *file = 0;
        int need_reply = 0;
-       int has_reply_ack;
+       int has_reply_ack = 0;
        int fds[VHOST_MEMORY_MAX_NREGIONS];
        int fd_num = 0;
        int len;