mirror of https://gitee.com/openkylin/libvirt.git
tests: cpuTestLoadMultiXML: use g_new0 instead of VIR_ALLOC_N
Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
parent
bff6aee4ca
commit
cc9674c318
|
@ -111,11 +111,13 @@ cpuTestLoadMultiXML(virArch arch,
|
|||
goto cleanup;
|
||||
|
||||
n = virXPathNodeSet("/cpuTest/cpu", ctxt, &nodes);
|
||||
if (n <= 0 || (VIR_ALLOC_N(cpus, n) < 0)) {
|
||||
if (n <= 0) {
|
||||
fprintf(stderr, "\nNo /cpuTest/cpu elements found in %s\n", xml);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
cpus = g_new0(virCPUDefPtr, n);
|
||||
|
||||
for (i = 0; i < n; i++) {
|
||||
ctxt->node = nodes[i];
|
||||
if (virCPUDefParseXML(ctxt, NULL, VIR_CPU_TYPE_HOST, &cpus[i]) < 0)
|
||||
|
|
Loading…
Reference in New Issue