From 9f51d190873b7d51682a87e5cf766ed76988214e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 4 Dec 2013 15:07:45 +0100 Subject: PlaylistFile: use std::string for temporary string allocation --- src/PlaylistFile.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/PlaylistFile.cxx b/src/PlaylistFile.cxx index 63a0807e9..8956bd3b5 100644 --- a/src/PlaylistFile.cxx +++ b/src/PlaylistFile.cxx @@ -156,10 +156,9 @@ LoadPlaylistFileInfo(PlaylistInfo &info, if (!StatFile(path_fs, st) || !S_ISREG(st.st_mode)) return false; - char *name = g_strndup(name_fs_str, - name_length + 1 - sizeof(PLAYLIST_FILE_SUFFIX)); - std::string name_utf8 = PathToUTF8(name); - g_free(name); + std::string name(name_fs_str, + name_length + 1 - sizeof(PLAYLIST_FILE_SUFFIX)); + std::string name_utf8 = PathToUTF8(name.c_str()); if (name_utf8.empty()) return false; -- cgit v1.2.3