aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-02 17:22:47 +0100
committerMax Kellermann <max@duempel.org>2009-01-02 17:22:47 +0100
commit9e46c320043ceab5e0aa788af03110561fe1a189 (patch)
tree746d3755905094ca50ef2be476dd89b124dc7aaf /src
parentcc4e0a786deb268a30798fb6e93a151a49ed4cea (diff)
downloadmpd-9e46c320043ceab5e0aa788af03110561fe1a189.tar.gz
mpd-9e46c320043ceab5e0aa788af03110561fe1a189.tar.xz
mpd-9e46c320043ceab5e0aa788af03110561fe1a189.zip
playlist: use GLib instead of utils.h
Diffstat (limited to 'src')
-rw-r--r--src/playlist.c26
-rw-r--r--src/stored_playlist.c4
2 files changed, 17 insertions, 13 deletions
diff --git a/src/playlist.c b/src/playlist.c
index 7abb7436f..303c54a6a 100644
--- a/src/playlist.c
+++ b/src/playlist.c
@@ -30,7 +30,6 @@
#include "log.h"
#include "mapper.h"
#include "path.h"
-#include "utils.h"
#include "state_file.h"
#include "stored_playlist.h"
#include "ack.h"
@@ -43,6 +42,8 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
+#include <stdlib.h>
+#include <errno.h>
#define PLAYLIST_STATE_STOP 0
#define PLAYLIST_STATE_PLAY 1
@@ -149,14 +150,17 @@ void initPlaylist(void)
playlist_saveAbsolutePaths =
DEFAULT_PLAYLIST_SAVE_ABSOLUTE_PATHS;
- playlist.songs = xmalloc(sizeof(struct song *) * playlist_max_length);
- playlist.songMod = xmalloc(sizeof(uint32_t) * playlist_max_length);
- playlist.order = xmalloc(sizeof(playlist.order[0]) *
- playlist_max_length);
- playlist.idToPosition = xmalloc(sizeof(int) * playlist_max_length *
- PLAYLIST_HASH_MULT);
- playlist.positionToId = xmalloc(sizeof(playlist.positionToId[0]) *
- playlist_max_length);
+ playlist.songs = g_malloc(sizeof(playlist.songs[0]) *
+ playlist_max_length);
+ playlist.songMod = g_malloc(sizeof(playlist.songMod[0]) *
+ playlist_max_length);
+ playlist.order = g_malloc(sizeof(playlist.order[0]) *
+ playlist_max_length);
+ playlist.idToPosition = g_malloc(sizeof(playlist.idToPosition[0]) *
+ playlist_max_length *
+ PLAYLIST_HASH_MULT);
+ playlist.positionToId = g_malloc(sizeof(playlist.positionToId[0]) *
+ playlist_max_length);
memset(playlist.songs, 0, sizeof(char *) * playlist_max_length);
@@ -1335,7 +1339,7 @@ enum playlist_result loadPlaylist(struct client *client, const char *utf8file)
const char *temp = g_ptr_array_index(list, i);
if ((addToPlaylist(temp, NULL)) != PLAYLIST_RESULT_SUCCESS) {
/* for windows compatibility, convert slashes */
- char *temp2 = xstrdup(temp);
+ char *temp2 = g_strdup(temp);
char *p = temp2;
while (*p) {
if (*p == '\\')
@@ -1358,7 +1362,7 @@ void searchForSongsInPlaylist(struct client *client,
unsigned numItems, LocateTagItem * items)
{
unsigned i;
- char **originalNeedles = xmalloc(numItems * sizeof(char *));
+ char **originalNeedles = g_malloc(numItems * sizeof(char *));
for (i = 0; i < numItems; i++) {
originalNeedles[i] = items[i].needle;
diff --git a/src/stored_playlist.c b/src/stored_playlist.c
index fa1ae7cc9..a21feeeee 100644
--- a/src/stored_playlist.c
+++ b/src/stored_playlist.c
@@ -21,7 +21,6 @@
#include "song.h"
#include "mapper.h"
#include "path.h"
-#include "utils.h"
#include "ls.h"
#include "database.h"
#include "idle.h"
@@ -32,6 +31,7 @@
#include <unistd.h>
#include <dirent.h>
#include <string.h>
+#include <errno.h>
static struct stored_playlist_info *
load_playlist_info(const char *parent_path_fs, const char *name_fs)
@@ -179,7 +179,7 @@ spl_load(const char *utf8path)
s = song_get_url(song, path_max_tmp);
}
- g_ptr_array_add(list, xstrdup(s));
+ g_ptr_array_add(list, g_strdup(s));
if (list->len >= playlist_max_length)
break;