diff options
| author | Kevin Wolf | 2012-04-26 13:45:30 +0200 |
|---|---|---|
| committer | Paolo Bonzini | 2012-04-26 17:54:22 +0200 |
| commit | b3adf53a3a10a1ca8347167907e4cf8bbd0204f1 (patch) | |
| tree | 656e6728dfa8c369f90a5134fe33197ee5ac5469 | |
| parent | hda: fix codec ids (diff) | |
| download | qemu-b3adf53a3a10a1ca8347167907e4cf8bbd0204f1.tar.gz qemu-b3adf53a3a10a1ca8347167907e4cf8bbd0204f1.tar.xz qemu-b3adf53a3a10a1ca8347167907e4cf8bbd0204f1.zip | |
nbd: Fix uninitialised use of s->sock
s->sock is assigned only afterwards, so we're really registering an
aio_fd_handler for file descriptor 0 here. Not exactly what we intended.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rw-r--r-- | block/nbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/nbd.c b/block/nbd.c index 56dbf6ef86..1212614223 100644 --- a/block/nbd.c +++ b/block/nbd.c @@ -284,7 +284,7 @@ static int nbd_establish_connection(BlockDriverState *bs) /* Now that we're connected, set the socket to be non-blocking and * kick the reply mechanism. */ socket_set_nonblock(sock); - qemu_aio_set_fd_handler(s->sock, nbd_reply_ready, NULL, + qemu_aio_set_fd_handler(sock, nbd_reply_ready, NULL, nbd_have_request, s); s->sock = sock; |
