Skip to content

Commit

Permalink
bootdevice: add validate check for qemu_boot_set()
Browse files Browse the repository at this point in the history
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
  • Loading branch information
gongleiarei authored and root committed Dec 22, 2014
1 parent f183993 commit 3b08098
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bootdevice.c
Expand Up @@ -49,12 +49,20 @@ void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)

void qemu_boot_set(const char *boot_order, Error **errp)
{
Error *local_err = NULL;

if (!boot_set_handler) {
error_setg(errp, "no function defined to set boot device list for"
" this architecture");
return;
}

validate_bootdevices(boot_order, &local_err);
if (local_err) {
error_propagate(errp, local_err);
return;
}

if (boot_set_handler(boot_set_opaque, boot_order)) {
error_setg(errp, "setting boot device list failed");
return;
Expand Down

0 comments on commit 3b08098

Please sign in to comment.