OSDN Git Service

nbd/server: Silence gcc false positive
authorEric Blake <eblake@redhat.com>
Fri, 22 Jun 2018 12:58:14 +0000 (07:58 -0500)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 22 Jun 2018 13:18:36 +0000 (14:18 +0100)
commit45eb6fb6cea28cdc937764aac6585751047bb294
tree6b14129f199ca6320466eb1af4558e8252e80ace
parentc74b91ac1c23e58e513203f112ab9b446e02b56c
nbd/server: Silence gcc false positive

The code has a while() loop that always initialized 'end', and
the loop always executes at least once (as evidenced by the assert()
just prior to the loop).  But some versions of gcc still complain
that 'end' is used uninitialized, so silence them.

Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20180622125814.345274-1-eblake@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
nbd/server.c