Commit 260a0cc3 authored by Max Kellermann's avatar Max Kellermann

music_pipe: use GLib instead of utils.h

Eliminate the deprecated utils.h memory allocation functions.
parent 8b1f6ff3
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment