common: Fixed a typo with initialization in YandexAppMainFuncImpl::main(). [#METR-21516]

This commit is contained in:
Vladimir Chebotarev 2017-07-19 22:55:10 +03:00
parent f6b037141b
commit dd0905e906

View File

@ -43,9 +43,9 @@ public:
static int main(int _argc, char * _argv[])
{
App app;
AppHandler::init(app, _argc, _argv);
try
{
AppHandler::init(app, _argc, _argv);
return AppHandler::run(app, _argc, _argv);
}
catch (const Poco::Exception & _ex)