PlaylistFile: use std::string for temporary string allocation

This commit is contained in:
Max Kellermann 2013-12-04 15:07:45 +01:00
parent 859184000f
commit 9f51d19087

View File

@ -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;