From 7267c0947d7e8ae5dff7bafd932c3bc285f43e5c Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Sat, 20 Aug 2011 22:09:37 -0500 Subject: Use glib memory allocation and free functions qemu_malloc/qemu_free no longer exist after this commit. Signed-off-by: Anthony Liguori --- qemu-nbd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qemu-nbd.c') diff --git a/qemu-nbd.c b/qemu-nbd.c index d91c02ce49..0b25a4dd48 100644 --- a/qemu-nbd.c +++ b/qemu-nbd.c @@ -431,7 +431,7 @@ int main(int argc, char **argv) /* children */ } - sharing_fds = qemu_malloc((shared + 1) * sizeof(int)); + sharing_fds = g_malloc((shared + 1) * sizeof(int)); if (socket) { sharing_fds[0] = unix_socket_incoming(socket); @@ -491,7 +491,7 @@ int main(int argc, char **argv) close(sharing_fds[0]); bdrv_close(bs); - qemu_free(sharing_fds); + g_free(sharing_fds); if (socket) unlink(socket); -- cgit 1.4.1