mirror of https://gitee.com/openkylin/libvirt.git
virsh: Use 'format' argument only when specified
The condition checking whether --format was specified was incorrect. virsh crashed if the following format was used: virsh dump VM dump --format '' --memory-only Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1272301
This commit is contained in:
parent
9bf1cef737
commit
4ceaa7491e
|
@ -5280,7 +5280,7 @@ doDump(void *opaque)
|
|||
goto out;
|
||||
}
|
||||
|
||||
if (vshCommandOptString(ctl, cmd, "format", &format)) {
|
||||
if (vshCommandOptString(ctl, cmd, "format", &format) > 0) {
|
||||
if (STREQ(format, "kdump-zlib")) {
|
||||
dumpformat = VIR_DOMAIN_CORE_DUMP_FORMAT_KDUMP_ZLIB;
|
||||
} else if (STREQ(format, "kdump-lzo")) {
|
||||
|
|
Loading…
Reference in New Issue