summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Mammedov2017-08-17 18:14:13 +0200
committerPeter Maydell2017-08-23 13:24:41 +0200
commitd0a180131c6655487b47ea72e7da0a909a479a3c (patch)
tree49551e89c1d14c0c183f6ceac7201dd7bf9d2c6c
parentMerge remote-tracking branch 'remotes/dgibson/tags/ppc-for-2.10-20170823' int... (diff)
downloadqemu-d0a180131c6655487b47ea72e7da0a909a479a3c.tar.gz
qemu-d0a180131c6655487b47ea72e7da0a909a479a3c.tar.xz
qemu-d0a180131c6655487b47ea72e7da0a909a479a3c.zip
fix build failure in nbd_read_reply_entry()
travis builds fail at HEAD at rc3 master with block/nbd-client.c: In function ‘nbd_read_reply_entry’: block/nbd-client.c:110:8: error: ‘ret’ may be used uninitialized in this function [-Werror=uninitialized] fix it by initializing 'ret' to 0 Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--block/nbd-client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/nbd-client.c b/block/nbd-client.c
index 422ecb4307..02c8e207ef 100644
--- a/block/nbd-client.c
+++ b/block/nbd-client.c
@@ -70,7 +70,7 @@ static coroutine_fn void nbd_read_reply_entry(void *opaque)
{
NBDClientSession *s = opaque;
uint64_t i;
- int ret;
+ int ret = 0;
Error *local_err = NULL;
while (!s->quit) {