Markus Armbruster
0849cb5478
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>
2021-07-09 18:42:46 +02:00
..
2020-10-09 07:08:20 +02:00
2020-09-23 16:07:44 +01:00
2020-11-03 16:24:56 +01:00
2021-07-05 11:40:32 +01:00
2020-09-23 16:07:44 +01:00
2020-11-15 17:04:40 +01:00
2020-09-23 16:07:44 +01:00
2020-10-23 13:42:16 +01:00
2020-10-23 13:42:16 +01:00
2020-11-15 17:04:40 +01:00
2021-01-21 13:00:41 +01:00
2021-01-07 05:09:41 -10:00
2021-05-14 12:28:01 +02:00
2021-01-26 14:36:37 +01:00
2021-01-24 20:10:54 +01:00
2021-05-13 18:06:40 +02:00
2021-02-16 17:15:39 +01:00
2020-09-23 16:07:44 +01:00
2020-09-23 16:07:44 +01:00
2021-02-07 20:38:20 +00:00
2020-11-15 17:04:40 +01:00
2020-11-15 17:04:40 +01:00
2020-09-29 02:14:30 -04:00
2021-03-09 21:47:45 +01:00
2021-02-03 08:00:33 -06:00
2021-07-06 08:33:51 +02:00
2020-09-23 16:07:44 +01:00
2020-11-15 17:04:40 +01:00
2021-07-05 11:40:32 +01:00
2021-07-06 08:33:51 +02:00
2021-06-15 20:27:38 +02:00
2021-05-10 13:55:28 +02:00
2020-12-10 17:16:44 +01:00
2021-06-13 17:42:40 -07:00
2021-06-15 20:27:38 +02:00
2021-06-19 14:51:51 -07:00
2021-06-25 14:24:24 +03:00
2021-06-15 17:17:09 +02:00
2021-03-31 10:44:21 +01:00
2021-05-21 18:22:33 +01:00
2020-09-23 16:07:44 +01:00
2021-02-01 10:50:55 +00:00
2021-07-09 18:42:46 +02:00
2020-10-09 07:08:19 +02:00
2021-06-18 10:59:53 -05:00
2021-06-16 15:03:26 +02:00
2021-06-16 15:03:26 +02:00
2021-01-18 10:05:06 +00:00
2021-04-12 12:27:14 +10:00
2020-09-23 16:07:44 +01:00
2020-09-23 16:07:44 +01:00
2020-09-23 16:07:44 +01:00
2021-01-04 11:13:39 +00:00
2020-09-23 16:07:44 +01:00
2021-01-08 15:13:38 +00:00
2021-06-02 06:51:09 +02:00
2021-04-30 12:27:47 +02:00
2021-02-08 11:19:51 +00:00
2021-05-13 18:21:13 +01:00
2020-10-23 13:42:16 +01:00
2021-04-01 15:27:44 +04:00