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,
{
const char *path = mpd_directory_get_path(directory);
if (visit_directory) {
Directory *d = Directory::NewGeneric(path, &root);
bool success = visit_directory(*d, error);
d->Free();
if (!success)
return false;
}
if (visit_directory &&
!visit_directory(Directory(path, &root), error))
return false;
if (recursive &&
!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