Revision b96bf493

b/hw/loader.c
559 559
    rom->name = qemu_strdup(file);
560 560
    rom->path = qemu_find_file(QEMU_FILE_TYPE_BIOS, rom->name);
561 561
    if (rom->path == NULL) {
562
        fprintf(stderr, "Could not find option rom '%s'\n", rom->name);
563
        goto err;
562
        rom->path = strdup(file);
564 563
    }
565 564

  
566 565
    fd = open(rom->path, O_RDONLY | O_BINARY);

Also available in: Unified diff