diff options
author | Markus Armbruster | 2020-04-22 15:07:07 +0200 |
---|---|---|
committer | Markus Armbruster | 2020-04-29 08:01:52 +0200 |
commit | 77ed971b9d96a288e497509054e1e59493ffd1fc (patch) | |
tree | b9d9d4027cb772b48edc35ab56dbacb6a83f8ed5 /bsd-user | |
parent | cryptodev: Fix cryptodev_builtin_cleanup() error API violation (diff) | |
download | qemu-77ed971b9d96a288e497509054e1e59493ffd1fc.tar.gz qemu-77ed971b9d96a288e497509054e1e59493ffd1fc.tar.xz qemu-77ed971b9d96a288e497509054e1e59493ffd1fc.zip |
block/file-posix: Fix check_cache_dropped() error handling
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call.
check_cache_dropped() calls error_setg() in a loop. It fails to break
the loop in one instance. If a subsequent iteration error_setg()s
again, it trips error_setv()'s assertion.
Fix it to break the loop.
Fixes: 31be8a2a97ecba7d31a82932286489cac318e9e9
Cc: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200422130719.28225-3-armbru@redhat.com>
Diffstat (limited to 'bsd-user')
0 files changed, 0 insertions, 0 deletions