aboutsummaryrefslogtreecommitdiff
path: root/hw/lm32
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2018-11-06 11:32:14 +0000
committerPeter Maydell <peter.maydell@linaro.org>2018-11-06 11:32:14 +0000
commit40af11eb7f80aac6c45d75e4fa6fa71ff930c651 (patch)
tree89c9b1f661b7f88ec136870e6d9bb5734eb94fda /hw/lm32
parentf6c98f91f56031141a47f86225fdc30f0f9f84fb (diff)
downloadqemu-40af11eb7f80aac6c45d75e4fa6fa71ff930c651.zip
qemu-40af11eb7f80aac6c45d75e4fa6fa71ff930c651.tar.gz
qemu-40af11eb7f80aac6c45d75e4fa6fa71ff930c651.tar.bz2
milkymist: Check for failure trying to load BIOS image
Check the return value from load_image_targphys(), which tells us whether our attempt to load the BIOS image into RAM failed. (Spotted by Coverity, CID 1190305.) Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Acked-by: Michael Walle <michael@walle.cc> Message-id: 20181030170032.1844-1-peter.maydell@linaro.org
Diffstat (limited to 'hw/lm32')
-rw-r--r--hw/lm32/milkymist.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/lm32/milkymist.c b/hw/lm32/milkymist.c
index 321f184..63c6894 100644
--- a/hw/lm32/milkymist.c
+++ b/hw/lm32/milkymist.c
@@ -138,7 +138,10 @@ milkymist_init(MachineState *machine)
bios_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
if (bios_filename) {
- load_image_targphys(bios_filename, BIOS_OFFSET, BIOS_SIZE);
+ if (load_image_targphys(bios_filename, BIOS_OFFSET, BIOS_SIZE) < 0) {
+ error_report("could not load bios '%s'", bios_filename);
+ exit(1);
+ }
}
reset_info->bootstrap_pc = BIOS_OFFSET;