aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pipe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pipe.c b/src/pipe.c
index 9ad9a87d..17b018ff 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 <glib.h>
#include <assert.h>
#include <string.h>
@@ -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)