qemu-trivial.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-trivial] [Qemu-devel][PATCH] change free() to g_free() to pair with g_malloc() series.
@ 2011-10-17 10:03 Ray Wang
  2011-10-17 11:11 ` [Qemu-trivial] [Qemu-devel] [PATCH] " Andreas Färber
  0 siblings, 1 reply; 2+ messages in thread
From: Ray Wang @ 2011-10-17 10:03 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, raywang

Signed-off-by: Ray Wang <raywang@linux.vnet.ibm.com>
---
 block/dmg.c         |   14 +++++++-------
 target-arm/helper.c |    2 +-
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/block/dmg.c b/block/dmg.c
index 64c3cce..661f31b 100644
--- a/block/dmg.c
+++ b/block/dmg.c
@@ -284,14 +284,14 @@ static void dmg_close(BlockDriverState *bs)
 {
     BDRVDMGState *s = bs->opaque;
     if(s->n_chunks>0) {
-	free(s->types);
-	free(s->offsets);
-	free(s->lengths);
-	free(s->sectors);
-	free(s->sectorcounts);
+	g_free(s->types);
+	g_free(s->offsets);
+	g_free(s->lengths);
+	g_free(s->sectors);
+	g_free(s->sectorcounts);
     }
-    free(s->compressed_chunk);
-    free(s->uncompressed_chunk);
+    g_free(s->compressed_chunk);
+    g_free(s->uncompressed_chunk);
     inflateEnd(&s->zstream);
 }
 
diff --git a/target-arm/helper.c b/target-arm/helper.c
index e2428eb..2b17dc9 100644
--- a/target-arm/helper.c
+++ b/target-arm/helper.c
@@ -471,7 +471,7 @@ static uint32_t cpu_arm_find_by_name(const char *name)
 
 void cpu_arm_close(CPUARMState *env)
 {
-    free(env);
+    g_free(env);
 }
 
 uint32_t cpsr_read(CPUARMState *env)
-- 
1.7.4.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-10-17 11:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-17 10:03 [Qemu-trivial] [Qemu-devel][PATCH] change free() to g_free() to pair with g_malloc() series Ray Wang
2011-10-17 11:11 ` [Qemu-trivial] [Qemu-devel] [PATCH] " Andreas Färber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).