Skip to content
Snippets Groups Projects
Commit 8d35bf28 authored by brad kittenbrink's avatar brad kittenbrink
Browse files

DEV-36893 make missing eventhost module a non-fatal error. We now print a...

DEV-36893 make missing eventhost module a non-fatal error.  We now print a warning and fail gracefully.
parent 43cbfeb7
No related branches found
No related tags found
No related merge requests found
......@@ -4125,6 +4125,12 @@ void LLAppViewer::loadEventHostModule(S32 listen_port)
gDirUtilp->getAppRODataDir(),
gDirUtilp->getExecutableDir());
if(dso_path == "")
{
llwarns << "QAModeEventHost requested but module \"" << dso_name << "\" not found!" << llendl;
return;
}
apr_dso_handle_t * eventhost_dso_handle = NULL;
apr_pool_t * eventhost_dso_memory_pool = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment