提交 74b379cb 编写于 作者: D Daniel P. Berrange

Fix QEMU restore from file in raw format

The logic for running the decompression programs was broken in
commit f2387093, so that for
non-raw formats the decompression program was never run, and
for raw formats, it tried to exec an argv[] with initial NULL
in the program name.

* src/qemu/qemu_driver.c: Fix logic in runing decompression program
上级 c861237a
......@@ -3794,9 +3794,8 @@ static int qemudDomainRestore(virConnectPtr conn,
goto cleanup;
}
if (header.compressed != QEMUD_SAVE_FORMAT_RAW)
if (header.compressed != QEMUD_SAVE_FORMAT_RAW) {
intermediate_argv[0] = prog;
else {
intermediatefd = fd;
fd = -1;
if (virExec(conn, intermediate_argv, NULL, NULL,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册