don't ignore a broken bootrom path

This commit is contained in:
espes 2015-04-21 01:59:23 -07:00
parent f8aba27d5b
commit 80bb4653bb
1 changed files with 5 additions and 5 deletions

View File

@ -300,12 +300,12 @@ static int xbox_lpc_initfn(PCIDevice *d)
const char *bootrom_file = qemu_opt_get(machine_opts, "bootrom");
if (!bootrom_file) bootrom_file = "mcpx.bin";
char *filename;
int rc, fd = -1;
if (bootrom_file
&& (filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bootrom_file))) {
s->bootrom_size = get_image_size(filename);
if (bootrom_file) {
char *filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bootrom_file);
assert(filename);
s->bootrom_size = get_image_size(filename);
if (s->bootrom_size != 512) {
fprintf(stderr, "MCPX bootrom should be 512 bytes, got %d\n",
s->bootrom_size);
@ -313,7 +313,7 @@ static int xbox_lpc_initfn(PCIDevice *d)
}
fd = open(filename, O_RDONLY | O_BINARY);
assert(fd != -1);
assert(fd >= 0);
rc = read(fd, s->bootrom_data, s->bootrom_size);
assert(rc == s->bootrom_size);