Linux build pass.

This commit is contained in:
Shyotl
2014-12-08 18:46:15 -06:00
parent 18e33d2268
commit ab4561aacc
2 changed files with 32 additions and 8 deletions

View File

@@ -120,10 +120,11 @@ LLPluginMessagePipe::~LLPluginMessagePipe()
bool LLPluginMessagePipe::addMessage(const std::string &message)
{
// queue the message for later output
LLMutexLock lock(&mOutputMutex);
//LLMutexLock lock(&mOutputMutex);
mOutputMutex.lock();
mOutput += message;
mOutput += MESSAGE_DELIMITER; // message separator
mOutputMutex.unlock();
return true;
}