From ba96920a52bbd2208aa1f3b284edc864e26198ce Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 20 Oct 2008 22:18:12 +0200 Subject: path: replaced mpd_basename() with g_path_get_basename() GLib's g_path_get_basename() is much more reliable than mpd_basename(). The latter could be tricked into an assertion failure. --- src/path.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'src/path.c') diff --git a/src/path.c b/src/path.c index 159d923da..14cb34ea9 100644 --- a/src/path.c +++ b/src/path.c @@ -276,15 +276,3 @@ void utf8_to_fs_playlist_path(char *path_max_tmp, const char *utf8path) rpp2app_r(path_max_tmp, path_max_tmp); strncat(path_max_tmp, "." PLAYLIST_FILE_SUFFIX, MPD_PATH_MAX - 1); } - -/* Only takes sanitized paths w/o trailing slashes */ -const char *mpd_basename(const char *path) -{ - const char *ret = strrchr(path, '/'); - - if (!ret) - return path; - ++ret; - assert(*ret != '\0'); - return ret; -} -- cgit v1.2.3