mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
savevm: qmp_xen_save_devices_state(): use error_setg_file_open()
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Acked-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
7581766b71
commit
1befce9652
1 changed files with 1 additions and 1 deletions
2
savevm.c
2
savevm.c
|
@ -2410,7 +2410,7 @@ void qmp_xen_save_devices_state(const char *filename, Error **errp)
|
|||
|
||||
f = qemu_fopen(filename, "wb");
|
||||
if (!f) {
|
||||
error_set(errp, QERR_OPEN_FILE_FAILED, filename);
|
||||
error_setg_file_open(errp, errno, filename);
|
||||
goto the_end;
|
||||
}
|
||||
ret = qemu_save_device_state(f);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue