projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c0f255
)
virtio-9p: Fix the memset usage
author
Aneesh Kumar K.V
<aneesh.kumar@linux.vnet.ibm.com>
Thu, 2 Sep 2010 05:39:07 +0000
(11:09 +0530)
committer
Aneesh Kumar K.V
<aneesh.kumar@linux.vnet.ibm.com>
Wed, 8 Sep 2010 17:26:42 +0000
(22:56 +0530)
The arguments are wrong. Use qemu_mallocz directly
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
hw/virtio-9p.c
patch
|
blob
|
history
diff --git
a/hw/virtio-9p.c
b/hw/virtio-9p.c
index
4127439
..
a53b222
100644
(file)
--- a/
hw/virtio-9p.c
+++ b/
hw/virtio-9p.c
@@
-2823,8
+2823,7
@@
static void v9fs_wstat_post_chown(V9fsState *s, V9fsWstatState *vs, int err)
if (vs->v9stat.name.size != 0) {
V9fsRenameState *vr;
- vr = qemu_malloc(sizeof(V9fsRenameState));
- memset(vr, sizeof(*vr), 0);
+ vr = qemu_mallocz(sizeof(V9fsRenameState));
vr->newdirfid = -1;
vr->pdu = vs->pdu;
vr->fidp = vs->fidp;