From 9b0825be5ccba5dd35dce2421804a382ddead67f Mon Sep 17 00:00:00 2001
From: Tofu Linden <tofu.linden@lindenlab.com>
Date: Wed, 9 Dec 2009 14:48:36 -0800
Subject: [PATCH] get llmediaplugintest compiling on win32, dumbly.

---
 indra/test_apps/llplugintest/llmediaplugintest.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/indra/test_apps/llplugintest/llmediaplugintest.cpp b/indra/test_apps/llplugintest/llmediaplugintest.cpp
index c6df77f9a4c..674520bb877 100644
--- a/indra/test_apps/llplugintest/llmediaplugintest.cpp
+++ b/indra/test_apps/llplugintest/llmediaplugintest.cpp
@@ -1531,6 +1531,9 @@ void LLMediaPluginTest::addMediaPanel( std::string url )
 #endif
 
 	// for this test app, use the cwd as the user data path (ugh).
+#if LL_WINDOWS
+	std::string user_data_path = ".\\";
+#else
         char cwd[ FILENAME_MAX ];
 	if (NULL == getcwd( cwd, FILENAME_MAX - 1 ))
 	{
@@ -1538,6 +1541,7 @@ void LLMediaPluginTest::addMediaPanel( std::string url )
 		return;
 	}
 	std::string user_data_path = std::string( cwd ) + "/";
+#endif
 
 	media_source->init( launcher_name, plugin_name, false, user_data_path );
 	media_source->setDisableTimeout(mDisableTimeout);
-- 
GitLab