mirror of https://gitee.com/openkylin/libvirt.git
qemu: Don't check CPU model property key
The qemuMonitorJSONParseCPUModelProperty function is a callback for virJSONValueObjectForeachKeyValue and is called for each key/value pair, thus it doesn't really make sense to check whether key is NULL. Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
c6e9561ad3
commit
ec23791517
|
@ -4982,12 +4982,6 @@ qemuMonitorJSONParseCPUModelProperty(const char *key,
|
||||||
size_t n = machine_model->nprops;
|
size_t n = machine_model->nprops;
|
||||||
bool supported;
|
bool supported;
|
||||||
|
|
||||||
if (!key) {
|
|
||||||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
||||||
_("query-cpu-model-expansion reply data is missing a"
|
|
||||||
" property name"));
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (VIR_STRDUP(machine_model->props[n].name, key) < 0)
|
if (VIR_STRDUP(machine_model->props[n].name, key) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue