summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLi Qiang2018-12-15 13:03:51 +0100
committerMichael S. Tsirkin2019-01-15 01:31:04 +0100
commit82248cd45e6f82da892127c4749ae89335217e31 (patch)
tree045fee2587d269f8d5be0d89d52b04e6ea8f3406
parentqemu: avoid memory leak while remove disk (diff)
downloadqemu-82248cd45e6f82da892127c4749ae89335217e31.tar.gz
qemu-82248cd45e6f82da892127c4749ae89335217e31.tar.xz
qemu-82248cd45e6f82da892127c4749ae89335217e31.zip
tests: vhost-user-test: initialize 'fd' in chr_read
Currently when processing VHOST_USER_SET_VRING_CALL if 'qemu_chr_fe_get_msgfds' get no fd, the 'fd' will be a stack uninitialized value. Signed-off-by: Li Qiang <liq3ea@163.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rw-r--r--tests/vhost-user-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vhost-user-test.c b/tests/vhost-user-test.c
index 54982f68e7..84e50d84e7 100644
--- a/tests/vhost-user-test.c
+++ b/tests/vhost-user-test.c
@@ -309,7 +309,7 @@ static void chr_read(void *opaque, const uint8_t *buf, int size)
CharBackend *chr = &s->chr;
VhostUserMsg msg;
uint8_t *p = (uint8_t *) &msg;
- int fd;
+ int fd = -1;
if (s->test_fail) {
qemu_chr_fe_disconnect(chr);