From 260a0cc33c335a96a6326c6fe24435f55f59b44e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 2 Nov 2008 16:55:48 +0100 Subject: music_pipe: use GLib instead of utils.h Eliminate the deprecated utils.h memory allocation functions. --- src/pipe.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pipe.c b/src/pipe.c index 9ad9a87d2..17b018ff1 100644 --- a/src/pipe.c +++ b/src/pipe.c @@ -18,9 +18,9 @@ #include "pipe.h" #include "notify.h" -#include "utils.h" #include "audio_format.h" +#include #include #include @@ -31,7 +31,7 @@ music_pipe_init(unsigned int size, struct notify *notify) { assert(size > 0); - ob.chunks = xmalloc(size * sizeof(*ob.chunks)); + ob.chunks = g_new(struct music_chunk, size); ob.size = size; ob.begin = 0; ob.end = 0; @@ -43,7 +43,7 @@ music_pipe_init(unsigned int size, struct notify *notify) void music_pipe_free(void) { assert(ob.chunks != NULL); - free(ob.chunks); + g_free(ob.chunks); } void music_pipe_clear(void) -- cgit v1.2.3