diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp
index 5305f3dbcad95888b9313812ceee8e8878b488d0..d9a58d56fe799009408b17de9bc26948034ddbd6 100755
--- a/indra/newview/llmeshrepository.cpp
+++ b/indra/newview/llmeshrepository.cpp
@@ -500,7 +500,7 @@ class LLWholeModelFeeResponder: public LLCurl::Responder
 		mThread->mPendingUploads--;
 		dumpLLSDToFile(content,"whole_model_response.xml");
 
-		mThread->mWholeModelUploadURL = content["uploader"]; 
+		mThread->mWholeModelUploadURL = content["uploader"].asString(); 
 	}
 };
 
@@ -1389,7 +1389,7 @@ void LLMeshUploadThread::run()
 #if 1
 void dumpLLSDToFile(const LLSD& content, std::string filename)
 {
-	std::ofstream of(filename);
+	std::ofstream of(filename.c_str());
 	LLSDSerialize::toPrettyXML(content,of);
 }
 #endif