qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] block/qcow: Fix use of free() instead of g_free()


From: Stefan Weil
Subject: [Qemu-devel] [PATCH] block/qcow: Fix use of free() instead of g_free()
Date: Fri, 7 Oct 2011 07:32:47 +0200

cppcheck reported this error:

qemu/block/qcow.c:599: error: Mismatching allocation and deallocation: 
cluster_data

Signed-off-by: Stefan Weil <address@hidden>
---
 block/qcow.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/block/qcow.c b/block/qcow.c
index c8bfecc..eba5a04 100644
--- a/block/qcow.c
+++ b/block/qcow.c
@@ -596,7 +596,7 @@ static int qcow_co_writev(BlockDriverState *bs, int64_t 
sector_num,
     if (qiov->niov > 1) {
         qemu_vfree(orig_buf);
     }
-    free(cluster_data);
+    g_free(cluster_data);
 
     return ret;
 }
-- 
1.7.2.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]