[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 8/9] virtio: Remove unneeded g_free() check in virti
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PATCH 8/9] virtio: Remove unneeded g_free() check in virtio_cleanup() |
Date: |
Fri, 10 Feb 2012 11:34:12 +0000 |
From: Luiz Capitulino <address@hidden>
Signed-off-by: Luiz Capitulino <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
hw/virtio.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/hw/virtio.c b/hw/virtio.c
index 74cc038..064aecf 100644
--- a/hw/virtio.c
+++ b/hw/virtio.c
@@ -845,8 +845,7 @@ int virtio_load(VirtIODevice *vdev, QEMUFile *f)
void virtio_cleanup(VirtIODevice *vdev)
{
qemu_del_vm_change_state_handler(vdev->vmstate);
- if (vdev->config)
- g_free(vdev->config);
+ g_free(vdev->config);
g_free(vdev->vq);
g_free(vdev);
}
--
1.7.8.3
- [Qemu-devel] [PULL 0/9] Trivial patches for 28 January to 10 February 2012, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 1/9] linux-user: fail execve() if env/args too big, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 7/9] net: remove extra spaces in help messages, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 8/9] virtio: Remove unneeded g_free() check in virtio_cleanup(),
Stefan Hajnoczi <=
- [Qemu-devel] [PATCH 5/9] vl.c: Fix typo in variable name, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 3/9] cpu-exec.c: Correct comment about this file and indentation cleanup, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 6/9] fmopl: Fix typo in function name, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 9/9] linux-user: brk() debugging, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 4/9] ide: fix compilation errors when DEBUG_IDE is set, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 2/9] CODING_STYLE: Clarify style for enum and function type names, Stefan Hajnoczi, 2012/02/10
- Re: [Qemu-devel] [PULL 0/9] Trivial patches for 28 January to 10 February 2012, Anthony Liguori, 2012/02/17