diff options
author | James Cook <james@lindenlab.com> | 2009-12-09 14:36:52 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-12-09 14:36:52 -0800 |
commit | ca2566a1aca90bc2cc54c96d94bcd85110e65bed (patch) | |
tree | 20ee8031d73da630e8b967fa1760ffab702ccedd /indra/test_apps | |
parent | 6dd56fddd7c84e5bbf7c80ea556b0a694c3823da (diff) | |
parent | 05e0d9d24ac4ec1c0b18326e97a0c9ab705f5948 (diff) |
Merge
Diffstat (limited to 'indra/test_apps')
-rw-r--r-- | indra/test_apps/llplugintest/llmediaplugintest.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/indra/test_apps/llplugintest/llmediaplugintest.cpp b/indra/test_apps/llplugintest/llmediaplugintest.cpp index 27cb52a507..c6df77f9a4 100644 --- a/indra/test_apps/llplugintest/llmediaplugintest.cpp +++ b/indra/test_apps/llplugintest/llmediaplugintest.cpp @@ -1529,7 +1529,17 @@ void LLMediaPluginTest::addMediaPanel( std::string url ) #elif LL_WINDOWS std::string launcher_name( "SLPlugin.exe" ); #endif - media_source->init( launcher_name, plugin_name ); + + // for this test app, use the cwd as the user data path (ugh). + char cwd[ FILENAME_MAX ]; + if (NULL == getcwd( cwd, FILENAME_MAX - 1 )) + { + std::cerr << "Couldn't get cwd - probably too long - failing to init." << llendl; + return; + } + std::string user_data_path = std::string( cwd ) + "/"; + + media_source->init( launcher_name, plugin_name, false, user_data_path ); media_source->setDisableTimeout(mDisableTimeout); // make a new panel and save parameters |