Fixed small bug in Query::ListSelection.

This commit is contained in:
Daniel Önnerby 2008-05-06 13:33:52 +00:00
parent 27071b015b
commit 57dd8ed81e

View File

@ -452,7 +452,7 @@ bool Query::ListSelection::ParseQuery(Library::Base *oLibrary,db::Connection &db
// For optimization, lets just add to results every 100 track
TrackVector tempTrackResults;
trackResults.reserve(101);
tempTrackResults.reserve(101);
int row(0);
while(tracks.Step()==db::ReturnCode::Row){