Commit 83a988e2 authored by Max Kellermann's avatar Max Kellermann

db/proxy: allocate Directory instance on the stack

parent 91efe1cb
...@@ -360,13 +360,9 @@ Visit(struct mpd_connection *connection, Directory &root, ...@@ -360,13 +360,9 @@ Visit(struct mpd_connection *connection, Directory &root,
{ {
const char *path = mpd_directory_get_path(directory); const char *path = mpd_directory_get_path(directory);
if (visit_directory) { if (visit_directory &&
Directory *d = Directory::NewGeneric(path, &root); !visit_directory(Directory(path, &root), error))
bool success = visit_directory(*d, error); return false;
d->Free();
if (!success)
return false;
}
if (recursive && if (recursive &&
!Visit(connection, root, path, recursive, filter, !Visit(connection, root, path, recursive, filter,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment