diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llappviewer.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 1c3c79db3d..5a1ccb2047 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -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; | 
