mirror of https://github.com/xemu-project/xemu.git
accel: Remove NVMM unreachable error path
g_malloc0() can not fail. Remove the unreachable error path. https://developer-old.gnome.org/glib/stable/glib-Memory-Allocation.html#glib-Memory-Allocation.description Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230624174121.11508-10-philmd@linaro.org>
This commit is contained in:
parent
642ce52d8e
commit
8c12c76df2
|
@ -943,10 +943,6 @@ nvmm_init_vcpu(CPUState *cpu)
|
||||||
}
|
}
|
||||||
|
|
||||||
qcpu = g_malloc0(sizeof(*qcpu));
|
qcpu = g_malloc0(sizeof(*qcpu));
|
||||||
if (qcpu == NULL) {
|
|
||||||
error_report("NVMM: Failed to allocate VCPU context.");
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = nvmm_vcpu_create(mach, cpu->cpu_index, &qcpu->vcpu);
|
ret = nvmm_vcpu_create(mach, cpu->cpu_index, &qcpu->vcpu);
|
||||||
if (ret == -1) {
|
if (ret == -1) {
|
||||||
|
|
Loading…
Reference in New Issue