aboutsummaryrefslogtreecommitdiff
path: root/src/update.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/update.c')
-rw-r--r--src/update.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/update.c b/src/update.c
index c2a6296c..f2724762 100644
--- a/src/update.c
+++ b/src/update.c
@@ -520,7 +520,6 @@ updateDirectory(struct directory *directory, const struct stat *st)
{
DIR *dir;
struct dirent *ent;
- char path_max_tmp[MPD_PATH_MAX];
char *path_fs;
assert(S_ISDIR(st->st_mode));
@@ -552,10 +551,9 @@ updateDirectory(struct directory *directory, const struct stat *st)
}
if (stat_directory_child(directory, utf8, &st2) == 0)
- updateInDirectory(directory,
- path_max_tmp, &st2);
+ updateInDirectory(directory, utf8, &st2);
else
- delete_name_in(directory, path_max_tmp);
+ delete_name_in(directory, utf8);
g_free(utf8);
}