Checker: FORWARD_NULL
Function: LLPluginMessagePipe::pump(double)
File: /indra/llplugin/llpluginmessagepipe.cpp
master
Tofu Linden 2010-02-10 18:25:54 +00:00
parent 5206f0fe91
commit 2bc74a4e99
1 changed files with 8 additions and 1 deletions

View File

@ -304,7 +304,14 @@ void LLPluginMessagePipe::processInput(void)
while((delim = mInput.find(MESSAGE_DELIMITER, start)) != std::string::npos)
{
// Let the owner process this message
mOwner->receiveMessageRaw(mInput.substr(start, delim - start));
if (mOwner)
{
mOwner->receiveMessageRaw(mInput.substr(start, delim - start));
}
else
{
LL_WARNS("Plugin") << "!mOwner" << LL_ENDL;
}
start = delim + 1;
}