block: Remove unnecessary NULL check in bdrv_pad_request()
commite193d4bdb8ba34ef1805228875d4a0153b0b7f27
authorKevin Wolf <kwolf@redhat.com>
Wed, 27 Mar 2024 19:27:50 +0000 (27 20:27 +0100)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Tue, 2 Apr 2024 12:55:32 +0000 (2 14:55 +0200)
tree3ca71fa3846ea0b1e352bf8ceeef188f76a16a53
parentaab1b3eeb4a2f6d82a6c4e463add2bfa19827b64
block: Remove unnecessary NULL check in bdrv_pad_request()

Coverity complains that the check introduced in commit 3f934817 suggests
that qiov could be NULL and we dereference it before reaching the check.
In fact, all of the callers pass a non-NULL pointer, so just remove the
misleading check.

Resolves: Coverity CID 1542668
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Fiona Ebner <f.ebner@proxmox.com>
Message-ID: <20240327192750.204197-1-kwolf@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
block/io.c