From 6b39a5621d9c6724db8f03164e350ae6220fa00a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 7 Aug 2012 23:25:42 +0200 Subject: locate: add "casefold" flag to parser Fold the case during construction, without having to create another copy. --- src/DatabaseQueue.cxx | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'src/DatabaseQueue.cxx') diff --git a/src/DatabaseQueue.cxx b/src/DatabaseQueue.cxx index e9a47a76..7bc18363 100644 --- a/src/DatabaseQueue.cxx +++ b/src/DatabaseQueue.cxx @@ -92,14 +92,7 @@ search_add_songs(struct player_control *pc, const char *uri, { const DatabaseSelection selection(uri, true); - struct locate_item_list *new_list = - locate_item_list_casefold(criteria); - using namespace std::placeholders; - const auto f = std::bind(SearchAddSong, pc, new_list, _1, _2); - bool success = GetDatabase()->Visit(selection, f, error_r); - - locate_item_list_free(new_list); - - return success; + const auto f = std::bind(SearchAddSong, pc, criteria, _1, _2); + return GetDatabase()->Visit(selection, f, error_r); } -- cgit v1.2.3