Fix segmentation fault when try show Manual on Explorer or other service apps

This commit is contained in:
Sergey Kukunin
2011-06-11 02:41:52 +03:00
parent 97adb066a3
commit 28fe39ce54
+4 -1
View File
@@ -998,7 +998,10 @@ void GMenu2X::main() {
menu->linkRight();
break;
case MANUAL:
menu->selLinkApp()->showManual();
{
LinkApp* app = menu->selLinkApp();
if ( app ) { app->showManual(); }
}
break;
case ALTLEFT:
menu->decSectionIndex();