projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b8a61a
)
s390x/cpu: use g_new0
author
Cornelia Huck
<cornelia.huck@de.ibm.com>
Thu, 10 Mar 2016 09:19:46 +0000
(10:19 +0100)
committer
Cornelia Huck
<cornelia.huck@de.ibm.com>
Thu, 10 Mar 2016 11:02:02 +0000
(12:02 +0100)
Let's use g_new0 to allocate cpu_states.
Suggested-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
hw/s390x/s390-virtio.c
patch
|
blob
|
history
diff --git
a/hw/s390x/s390-virtio.c
b/hw/s390x/s390-virtio.c
index 4ea9040f3a411948eb2de987b3349b52bcae25fd..7c6e281af1be30cd1e6d6eefaceaf3935d43ee4e 100644
(file)
--- 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);