'\n' are bad
git-svn-id: https://svn.musicpd.org/mpd/trunk@1296 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
@@ -356,6 +356,7 @@ int removeDeletedFromDirectory(Directory * directory) {
|
||||
|
||||
while((ent = readdir(dir))) {
|
||||
if(ent->d_name[0]=='.') continue; /* hide hidden stuff */
|
||||
if(strchr(ent->d_name, '\n')) continue;
|
||||
|
||||
utf8 = fsCharsetToUtf8(ent->d_name);
|
||||
|
||||
@@ -558,6 +559,7 @@ int updateDirectory(Directory * directory) {
|
||||
|
||||
while((ent = readdir(dir))) {
|
||||
if(ent->d_name[0]=='.') continue; /* hide hidden stuff */
|
||||
if(strchr(ent->d_name, '\n')) continue;
|
||||
|
||||
utf8 = fsCharsetToUtf8(ent->d_name);
|
||||
|
||||
@@ -604,6 +606,7 @@ int exploreDirectory(Directory * directory) {
|
||||
DEBUG("explore: %s\n",dirname);
|
||||
while((ent = readdir(dir))) {
|
||||
if(ent->d_name[0]=='.') continue; /* hide hidden stuff */
|
||||
if(strchr(ent->d_name, '\n')) continue;
|
||||
|
||||
utf8 = fsCharsetToUtf8(ent->d_name);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user