playlist: don't use isPlaylist() in deletePlaylist()

The only caller of deletePlaylist() appends PLAYLIST_FILE_SUFFIX, so
we can be sure it's already there.  We don't need to stat the file,
since unlink() does all the checking.
This commit is contained in:
Max Kellermann
2008-10-13 16:30:44 +02:00
parent 07c9b62764
commit bc85e92a72
3 changed files with 3 additions and 22 deletions
-16
View File
@@ -228,22 +228,6 @@ const char *getSuffix(const char *utf8file)
return ret;
}
static int hasSuffix(const char *utf8file, const char *suffix)
{
const char *s = getSuffix(utf8file);
if (s && 0 == strcmp(s, suffix))
return 1;
return 0;
}
int isPlaylist(const char *utf8file)
{
if (isFile(utf8file, NULL)) {
return hasSuffix(utf8file, PLAYLIST_FILE_SUFFIX);
}
return 0;
}
int isDir(const char *utf8name)
{
struct stat st;