[libvirt PATCH 2/5] qemu: firmware: check virJSONValueObjectGet return value

Ján Tomko jtomko at redhat.com
Tue Sep 22 21:32:30 UTC 2020


If the mapping is not present, we should not try to
access its elements.

Signed-off-by: Ján Tomko <jtomko at redhat.com>
Fixes: 8b5b80f4c5f7342eedce0747469223387ab709ef
---
 src/qemu/qemu_firmware.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/qemu/qemu_firmware.c b/src/qemu/qemu_firmware.c
index ffe2df20aa..480ce0b00d 100644
--- a/src/qemu/qemu_firmware.c
+++ b/src/qemu/qemu_firmware.c
@@ -434,10 +434,17 @@ qemuFirmwareMappingParse(const char *path,
                          virJSONValuePtr doc,
                          qemuFirmwarePtr fw)
 {
-    virJSONValuePtr mapping = virJSONValueObjectGet(doc, "mapping");
+    virJSONValuePtr mapping;
     const char *deviceStr;
     int tmp;
 
+    if (!(mapping = virJSONValueObjectGet(doc, "mapping"))) {
+        virReportError(VIR_ERR_INTERNAL_ERROR,
+                       _("missing mapping in '%s'"),
+                       path);
+        return -1;
+    }
+
     if (!(deviceStr = virJSONValueObjectGetString(mapping, "device"))) {
         virReportError(VIR_ERR_INTERNAL_ERROR,
                        _("missing device type in '%s'"),
-- 
2.26.2




More information about the libvir-list mailing list