From: Cornelia Huck Date: Thu, 10 Mar 2016 09:19:46 +0000 (+0100) Subject: s390x/cpu: use g_new0 X-Git-Tag: v2.6.0-rc0~47^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75cfb3bb41005b1cbba4954057ad5426df83f6d7;p=thirdparty%2Fqemu.git s390x/cpu: use g_new0 Let's use g_new0 to allocate cpu_states. Suggested-by: Thomas Huth Reviewed-by: Thomas Huth Signed-off-by: Cornelia Huck --- diff --git a/hw/s390x/s390-virtio.c b/hw/s390x/s390-virtio.c index 4ea9040f3a4..7c6e281af1b 100644 --- a/hw/s390x/s390-virtio.c +++ b/hw/s390x/s390-virtio.c @@ -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);