fix crash if posting event during shutdown.

master
Andrew A. de Laix 2010-12-10 12:06:43 -08:00
parent 1924f1bbca
commit dbcb6b4fa5
1 changed files with 1 additions and 1 deletions

View File

@ -475,7 +475,7 @@ void LLEventPump::stopListening(const std::string& name)
*****************************************************************************/
bool LLEventStream::post(const LLSD& event)
{
if (! mEnabled)
if (! mEnabled || !mSignal)
{
return false;
}