util/StringUtil: add StringEndsWith()
Replaces g_str_has_suffix().
This commit is contained in:
@@ -36,11 +36,10 @@
|
||||
#include "fs/Charset.hxx"
|
||||
#include "fs/FileSystem.hxx"
|
||||
#include "fs/DirectoryReader.hxx"
|
||||
#include "util/StringUtil.hxx"
|
||||
#include "util/UriUtil.hxx"
|
||||
#include "util/Error.hxx"
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#include <assert.h>
|
||||
#include <sys/stat.h>
|
||||
#include <string.h>
|
||||
@@ -147,7 +146,7 @@ LoadPlaylistFileInfo(PlaylistInfo &info,
|
||||
memchr(name_fs_str, '\n', name_length) != nullptr)
|
||||
return false;
|
||||
|
||||
if (!g_str_has_suffix(name_fs_str, PLAYLIST_FILE_SUFFIX))
|
||||
if (!StringEndsWith(name_fs_str, PLAYLIST_FILE_SUFFIX))
|
||||
return false;
|
||||
|
||||
const auto path_fs = AllocatedPath::Build(parent_path_fs, name_fs);
|
||||
|
Reference in New Issue
Block a user