提交 75cfb3bb 编写于 作者: C Cornelia Huck

s390x/cpu: use g_new0

Let's use g_new0 to allocate cpu_states.
Suggested-by: NThomas Huth <thuth@redhat.com>
Reviewed-by: NThomas Huth <thuth@redhat.com>
Signed-off-by: NCornelia Huck <cornelia.huck@de.ibm.com>
上级 8b8a61ad
......@@ -103,7 +103,7 @@ void s390_init_cpus(MachineState *machine)
machine->cpu_model = "host";
}
cpu_states = g_malloc0(sizeof(S390CPU *) * max_cpus);
cpu_states = g_new0(S390CPU *, max_cpus);
for (i = 0; i < max_cpus; i++) {
name = g_strdup_printf("cpu[%i]", i);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册