qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 2/2] block:use g_free inste ad of free in cloop.c


From: Dong Xu Wang
Subject: [Qemu-devel] [PATCH 2/2] block:use g_free inste ad of free in cloop.c
Date: Wed, 2 Nov 2011 16:36:21 +0800

From: Dong Xu Wang <address@hidden>

Fix mismatching allocation and deallocation: g_free should be used to pair with 
g_malloc.

v3: Split to 2 patches: one for fixing coding style, one for replacing free with
    g_free. And correct other 2 places with coding style problem.
v2: Fix spelling: gfree->g_free.
v1: Use gfree, to pair with g_malloc. Also fix coding style.

Reviewed-by: Andreas Färber <address@hidden>
Reviewed_by: Ray Wang <address@hidden>
Signed-off-by: Dong Xu Wang <address@hidden>
---
 block/cloop.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/block/cloop.c b/block/cloop.c
index 799b6c2..7570eb8 100644
--- a/block/cloop.c
+++ b/block/cloop.c
@@ -171,10 +171,10 @@ static void cloop_close(BlockDriverState *bs)
 {
     BDRVCloopState *s = bs->opaque;
     if (s->n_blocks > 0) {
-        free(s->offsets);
+        g_free(s->offsets);
     }
-    free(s->compressed_block);
-    free(s->uncompressed_block);
+    g_free(s->compressed_block);
+    g_free(s->uncompressed_block);
     inflateEnd(&s->zstream);
 }
 
-- 
1.7.5.4




reply via email to

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