Re: [Qemu-devel] [PATCH] nbd: fix uninitialized variable warning

2019-07-17 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20190716084240.17594-1-marcandre.lur...@redhat.com/ Hi, This series failed the asan build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN === #!/bin/

Re: [Qemu-devel] [PATCH] nbd: fix uninitialized variable warning

2019-07-16 Thread Marc-André Lureau
Hi On Tue, Jul 16, 2019 at 1:19 PM Philippe Mathieu-Daudé wrote: > > Hi Marc-André, > > On 7/16/19 10:42 AM, Marc-André Lureau wrote: > > ../block/nbd.c: In function 'nbd_co_request': > > ../block/nbd.c:745:8: error: 'local_reply.type' may be used uninitialized > > in this function [-Werror=mayb

Re: [Qemu-devel] [PATCH] nbd: fix uninitialized variable warning

2019-07-16 Thread Philippe Mathieu-Daudé
Hi Marc-André, On 7/16/19 10:42 AM, Marc-André Lureau wrote: > ../block/nbd.c: In function 'nbd_co_request': > ../block/nbd.c:745:8: error: 'local_reply.type' may be used uninitialized in > this function [-Werror=maybe-uninitialized] > if (chunk->type == NBD_REPLY_TYPE_NONE) { > ^ >

[Qemu-devel] [PATCH] nbd: fix uninitialized variable warning

2019-07-16 Thread Marc-André Lureau
../block/nbd.c: In function 'nbd_co_request': ../block/nbd.c:745:8: error: 'local_reply.type' may be used uninitialized in this function [-Werror=maybe-uninitialized] if (chunk->type == NBD_REPLY_TYPE_NONE) { ^ ../block/nbd.c:710:14: note: 'local_reply.type' was declared here NBD