mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
hdd_menu: don't segfault if /sys is not mounted
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1111 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
@@ -89,12 +89,12 @@ int CHDDMenuHandler::doMenu ()
|
||||
|
||||
bool hdd_found = 0;
|
||||
int n = scandir("/sys/block", &namelist, my_filter, alphasort);
|
||||
#if 0
|
||||
if(n <= 0) {
|
||||
//FIXME no hdd found message
|
||||
return 0;
|
||||
|
||||
if (n < 0) {
|
||||
perror("CHDDMenuHandler::doMenu: scandir(\"/sys/block\") failed");
|
||||
return menu_return::RETURN_REPAINT;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
CMenuWidget* hddmenu = new CMenuWidget(LOCALE_MAINMENU_SETTINGS, NEUTRINO_ICON_SETTINGS, 58);
|
||||
hddmenu->addIntroItems(LOCALE_HDD_SETTINGS);
|
||||
|
Reference in New Issue
Block a user