mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
vl: Use &error_fatal when parsing monitor options
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
7b1ee0f2b7
commit
822ac12df0
1 changed files with 1 additions and 6 deletions
7
vl.c
7
vl.c
|
@ -2404,7 +2404,6 @@ static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
|
|||
static void monitor_parse(const char *optarg, const char *mode, bool pretty)
|
||||
{
|
||||
static int monitor_device_index = 0;
|
||||
Error *local_err = NULL;
|
||||
QemuOpts *opts;
|
||||
const char *p;
|
||||
char label[32];
|
||||
|
@ -2425,11 +2424,7 @@ static void monitor_parse(const char *optarg, const char *mode, bool pretty)
|
|||
}
|
||||
}
|
||||
|
||||
opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &local_err);
|
||||
if (!opts) {
|
||||
error_report_err(local_err);
|
||||
exit(1);
|
||||
}
|
||||
opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &error_fatal);
|
||||
qemu_opt_set(opts, "mode", mode, &error_abort);
|
||||
qemu_opt_set(opts, "chardev", label, &error_abort);
|
||||
qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
|
||||
|
|
Loading…
Reference in a new issue