aboutsummaryrefslogtreecommitdiffstats
path: root/src/ls.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-03-18 04:01:37 +0000
committerEric Wong <normalperson@yhbt.net>2006-03-18 04:01:37 +0000
commit0e793b510a2a61759cccf4caa38d9651eae1018b (patch)
treefd23fef78584a66ca6852895ecbd827ab8de68ab /src/ls.c
parent17d3ccbaa3f22c4c0f8a86515d71fc017a451bbd (diff)
downloadmpd-0e793b510a2a61759cccf4caa38d9651eae1018b.tar.gz
mpd-0e793b510a2a61759cccf4caa38d9651eae1018b.tar.xz
mpd-0e793b510a2a61759cccf4caa38d9651eae1018b.zip
merge up to r3928, branch should be closeable unless there aresvn/oggflac
major issues that need to be addressed. git-svn-id: https://svn.musicpd.org/mpd/branches/oggflac@3929 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/ls.c')
-rw-r--r--src/ls.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ls.c b/src/ls.c
index f913ff2d3..8ff396835 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -155,12 +155,10 @@ int lsPlaylists(FILE * fp, char * utf8path) {
if(stat(s,&st)==0) {
if(S_ISREG(st.st_mode)) {
if(list==NULL) list = makeList(NULL, 1);
- dup = strdup(ent->d_name);
dup[suff] = '\0';
if((utf8 = fsCharsetToUtf8(dup))) {
insertInList(list,utf8,NULL);
}
- free(dup);
}
}
}