mirror of https://github.com/xqemu/xqemu.git
replay: Set error location properly when parsing options
Set error location so the error_report() calls will show appropriate command-line argument or config file info. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <1455303747-19776-4-git-send-email-ehabkost@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
43fa1e0bd9
commit
890ad5508e
|
@ -262,6 +262,14 @@ void replay_configure(QemuOpts *opts)
|
||||||
const char *fname;
|
const char *fname;
|
||||||
const char *rr;
|
const char *rr;
|
||||||
ReplayMode mode = REPLAY_MODE_NONE;
|
ReplayMode mode = REPLAY_MODE_NONE;
|
||||||
|
Location loc;
|
||||||
|
|
||||||
|
if (!opts) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
loc_push_none(&loc);
|
||||||
|
qemu_opts_loc_restore(opts);
|
||||||
|
|
||||||
rr = qemu_opt_get(opts, "rr");
|
rr = qemu_opt_get(opts, "rr");
|
||||||
if (!rr) {
|
if (!rr) {
|
||||||
|
@ -283,6 +291,8 @@ void replay_configure(QemuOpts *opts)
|
||||||
}
|
}
|
||||||
|
|
||||||
replay_enable(fname, mode);
|
replay_enable(fname, mode);
|
||||||
|
|
||||||
|
loc_pop(&loc);
|
||||||
}
|
}
|
||||||
|
|
||||||
void replay_start(void)
|
void replay_start(void)
|
||||||
|
|
Loading…
Reference in New Issue