eventlist.cpp:-fix possible segfault

Origin commit data
------------------
Commit: 61c596a6b9
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-05-11 (Fri, 11 May 2012)
This commit is contained in:
Jacek Jendrzej
2012-05-11 10:25:04 +02:00
parent 60860be698
commit 4b90a5c643

View File

@@ -1243,11 +1243,17 @@ int CEventFinderMenu::showMenu(void)
} }
else if(*m_search_list == CNeutrinoEventList::SEARCH_LIST_BOUQUET) else if(*m_search_list == CNeutrinoEventList::SEARCH_LIST_BOUQUET)
{ {
m_search_channelname = bouquetList->Bouquets[*m_search_bouquet_id]->channelList->getName(); if(bouquetList->Bouquets.size()<*m_search_bouquet_id ){
*m_search_bouquet_id = bouquetList->getActiveBouquetNumber();;
}
if(!bouquetList->Bouquets.empty())
m_search_channelname = bouquetList->Bouquets[*m_search_bouquet_id]->channelList->getName();
else
m_search_channelname ="";
} }
else if(*m_search_list == CNeutrinoEventList::SEARCH_LIST_ALL) else if(*m_search_list == CNeutrinoEventList::SEARCH_LIST_ALL)
{ {
m_search_channelname ==""; m_search_channelname ="";
} }
CStringInputSMS stringInput(LOCALE_EVENTFINDER_KEYWORD,m_search_keyword, 20, NONEXISTANT_LOCALE, NONEXISTANT_LOCALE, "abcdefghijklmnopqrstuvwxyz0123456789 -_/()<>=+.,:!?\\'"); CStringInputSMS stringInput(LOCALE_EVENTFINDER_KEYWORD,m_search_keyword, 20, NONEXISTANT_LOCALE, NONEXISTANT_LOCALE, "abcdefghijklmnopqrstuvwxyz0123456789 -_/()<>=+.,:!?\\'");