CID-52
Checker: FORWARD_NULL Function: LLPluginMessagePipe::pump(double) File: /indra/llplugin/llpluginmessagepipe.cppmaster
parent
5206f0fe91
commit
2bc74a4e99
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue