mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
Fixed a bug in searchtimers handling
This commit is contained in:
parent
92437a3951
commit
4a45965fb3
@ -423,9 +423,9 @@ const cEvent **cRecManager::PerformSearchTimerSearch(std::string epgSearchString
|
||||
numResults = results.size();
|
||||
if (numResults > 0) {
|
||||
searchResults = new const cEvent *[numResults];
|
||||
cSchedulesLock *schedulesLock;
|
||||
cSchedulesLock schedulesLock;
|
||||
const cSchedules *schedules;
|
||||
schedules = cSchedules::Schedules(*schedulesLock);
|
||||
schedules = cSchedules::Schedules(schedulesLock);
|
||||
const cEvent *event = NULL;
|
||||
int index=0;
|
||||
for (std::list<std::string>::iterator it=results.begin(); it != results.end(); ++it) {
|
||||
|
Loading…
Reference in New Issue
Block a user