diff options
author | Peter Maydell | 2019-07-22 11:11:28 +0200 |
---|---|---|
committer | Peter Maydell | 2019-07-22 11:11:28 +0200 |
commit | b9e02bb3f98174209dbd5c96858e65a31723221b (patch) | |
tree | 0ab801f8ceb104c4330cc7a9c4d1053911a47ffa /block | |
parent | Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (diff) | |
parent | nbd: Initialize reply on failure (diff) | |
download | qemu-b9e02bb3f98174209dbd5c96858e65a31723221b.tar.gz qemu-b9e02bb3f98174209dbd5c96858e65a31723221b.tar.xz qemu-b9e02bb3f98174209dbd5c96858e65a31723221b.zip |
Merge remote-tracking branch 'remotes/ericb/tags/pull-nbd-2019-07-19' into staging
nbd patches for 2019-07-19
- silence harmless compiler/valgrind warning
# gpg: Signature made Fri 19 Jul 2019 21:17:12 BST
# gpg: using RSA key A7A16B4A2527436A
# gpg: Good signature from "Eric Blake <eblake@redhat.com>" [full]
# gpg: aka "Eric Blake (Free Software Programmer) <ebb9@byu.net>" [full]
# gpg: aka "[jpeg image of size 6874]" [full]
# Primary key fingerprint: 71C2 CC22 B1C4 6029 27D2 F3AA A7A1 6B4A 2527 436A
* remotes/ericb/tags/pull-nbd-2019-07-19:
nbd: Initialize reply on failure
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'block')
-rw-r--r-- | block/nbd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/block/nbd.c b/block/nbd.c index 81edabbf35..57c1a20581 100644 --- a/block/nbd.c +++ b/block/nbd.c @@ -640,12 +640,11 @@ static coroutine_fn int nbd_co_receive_one_chunk( request_ret, qiov, payload, errp); if (ret < 0) { + memset(reply, 0, sizeof(*reply)); s->quit = true; } else { /* For assert at loop start in nbd_connection_entry */ - if (reply) { - *reply = s->reply; - } + *reply = s->reply; s->reply.handle = 0; } |