diff options
| author | Markus Armbruster | 2013-01-22 11:07:56 +0100 |
|---|---|---|
| committer | Stefan Hajnoczi | 2013-01-30 11:14:46 +0100 |
| commit | 6528499fa4c3ceaec01ad29d8090ef55918ebfb3 (patch) | |
| tree | 616b63f9d35de997afbce013f445530183f0b1a6 /hw/9pfs | |
| parent | xilinx_axidma: Fix debug mode compile messages (diff) | |
| download | qemu-6528499fa4c3ceaec01ad29d8090ef55918ebfb3.tar.gz qemu-6528499fa4c3ceaec01ad29d8090ef55918ebfb3.tar.xz qemu-6528499fa4c3ceaec01ad29d8090ef55918ebfb3.zip | |
g_malloc(0) and g_malloc0(0) return NULL; simplify
Once upon a time, it was decided that qemu_malloc(0) should abort.
Switching to glib retired that bright idea. Some code that was added
to cope with it (e.g. in commits 702ef63, b76b6e9) is still around.
Bury it.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'hw/9pfs')
| -rw-r--r-- | hw/9pfs/virtio-9p.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/hw/9pfs/virtio-9p.c b/hw/9pfs/virtio-9p.c index 0aaf0d2de0..b795839620 100644 --- a/hw/9pfs/virtio-9p.c +++ b/hw/9pfs/virtio-9p.c @@ -3101,11 +3101,7 @@ static void v9fs_xattrcreate(void *opaque) xattr_fidp->fs.xattr.flags = flags; v9fs_string_init(&xattr_fidp->fs.xattr.name); v9fs_string_copy(&xattr_fidp->fs.xattr.name, &name); - if (size) { - xattr_fidp->fs.xattr.value = g_malloc(size); - } else { - xattr_fidp->fs.xattr.value = NULL; - } + xattr_fidp->fs.xattr.value = g_malloc(size); err = offset; put_fid(pdu, file_fidp); out_nofid: |
