qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] fw_cfg: print error message when reading splashfile failed
@ 2018-10-24  5:12 Li Qiang
  2018-10-24 11:30 ` Laszlo Ersek
  2018-10-24 23:00 ` Philippe Mathieu-Daudé
  0 siblings, 2 replies; 5+ messages in thread
From: Li Qiang @ 2018-10-24  5:12 UTC (permalink / raw)
  To: lersek, peter.maydell, pbonzini; +Cc: qemu-devel, Li Qiang

Also remove unnecessary 'res' variable.

Signed-off-by: Li Qiang <liq3ea@gmail.com>
---
 hw/nvram/fw_cfg.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/hw/nvram/fw_cfg.c b/hw/nvram/fw_cfg.c
index 946f765..f4a52d8 100644
--- a/hw/nvram/fw_cfg.c
+++ b/hw/nvram/fw_cfg.c
@@ -68,15 +68,14 @@ static char *read_splashfile(char *filename, gsize *file_sizep,
                              int *file_typep)
 {
     GError *err = NULL;
-    gboolean res;
     gchar *content;
     int file_type;
     unsigned int filehead;
     int bmp_bpp;
 
-    res = g_file_get_contents(filename, &content, file_sizep, &err);
-    if (res == FALSE) {
-        error_report("failed to read splash file '%s'", filename);
+    if (!g_file_get_contents(filename, &content, file_sizep, &err)) {
+        error_report("failed to read splash file '%s', %s",
+                     filename, err->message);
         g_error_free(err);
         return NULL;
     }
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-11-01  6:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-24  5:12 [Qemu-devel] [PATCH] fw_cfg: print error message when reading splashfile failed Li Qiang
2018-10-24 11:30 ` Laszlo Ersek
2018-10-24 23:00 ` Philippe Mathieu-Daudé
2018-10-31 15:36   ` Markus Armbruster
2018-11-01  6:15     ` Li Qiang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).