summary refs log tree commit diff stats
path: root/util/guest-random.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2019-05-30 12:38:24 -0500
committerLaurent Vivier <laurent@vivier.eu>2019-06-06 11:21:25 +0200
commit11259e9adce0ad2deaa2867395267e808eb8a3b2 (patch)
treec5afea5e467394da98e257dde44b795545d1f5d5 /util/guest-random.c
parentcd2fa2a489c964335445dc911c92533133eb0fc2 (diff)
downloadfocaccia-qemu-11259e9adce0ad2deaa2867395267e808eb8a3b2.tar.gz
focaccia-qemu-11259e9adce0ad2deaa2867395267e808eb8a3b2.zip
util: Adjust qemu_guest_getrandom_nofail for Coverity
Explicitly ignore the return value of qemu_guest_getrandom.
Because we use error_fatal, all errors are already caught.

Fixes: CID 1401701
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190530173824.30699-1-richard.henderson@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'util/guest-random.c')
-rw-r--r--util/guest-random.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/guest-random.c b/util/guest-random.c
index e8124a3cad..00a08fd981 100644
--- a/util/guest-random.c
+++ b/util/guest-random.c
@@ -56,7 +56,7 @@ int qemu_guest_getrandom(void *buf, size_t len, Error **errp)
 
 void qemu_guest_getrandom_nofail(void *buf, size_t len)
 {
-    qemu_guest_getrandom(buf, len, &error_fatal);
+    (void)qemu_guest_getrandom(buf, len, &error_fatal);
 }
 
 uint64_t qemu_guest_random_seed_thread_part1(void)