qemu-option: Drop dead assertion
authorMarkus Armbruster <armbru@redhat.com>
Thu, 10 Jun 2021 08:50:26 +0000 (10:50 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Fri, 9 Jul 2021 16:42:46 +0000 (18:42 +0200)
commit0849cb547844b7205af01455b82dc54956c978a9
treebbdff38e80b53d35d22615856e720b4e8e9c70e2
parent05de778b5b8ab0b402996769117b88c7ea5c7c61
qemu-option: Drop dead assertion

Commit c6ecec43b2 "qemu-option: Check return value instead of @err
where convenient" simplified

    opts = qemu_opts_create(list, qdict_get_try_str(qdict, "id"), 1,
                            &local_err);
    if (local_err) {
        error_propagate(errp, local_err);
        return NULL;
    }

to

    opts = qemu_opts_create(list, qdict_get_try_str(qdict, "id"), 1, errp);
    if (!opts) {
        return NULL;
    }

but neglected to delete

    assert(opts != NULL);

Do that now.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210610085026.436081-1-armbru@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
util/qemu-option.c