mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 16:31:05 +02:00
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:
@@ -1243,11 +1243,17 @@ int CEventFinderMenu::showMenu(void)
|
||||
}
|
||||
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)
|
||||
{
|
||||
m_search_channelname =="";
|
||||
m_search_channelname ="";
|
||||
}
|
||||
|
||||
CStringInputSMS stringInput(LOCALE_EVENTFINDER_KEYWORD,m_search_keyword, 20, NONEXISTANT_LOCALE, NONEXISTANT_LOCALE, "abcdefghijklmnopqrstuvwxyz0123456789 -_/()<>=+.,:!?\\'");
|
||||
|
Reference in New Issue
Block a user