diff options
author | prep <prep@lindenlab.com> | 2012-03-05 14:24:25 -0500 |
---|---|---|
committer | prep <prep@lindenlab.com> | 2012-03-05 14:24:25 -0500 |
commit | 4370d0263301a60988335e99d37f4b584f160f77 (patch) | |
tree | a0ffdff209dd34389b683e56f9fccb984aff4478 /indra/newview | |
parent | f5cebb27a72cf31723eb621bdcd117f7634a4e58 (diff) |
Crash fix on teleport
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloaterpathfindingconsole.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterpathfindingconsole.cpp b/indra/newview/llfloaterpathfindingconsole.cpp index 2bf46175ee..5ac79668d2 100644 --- a/indra/newview/llfloaterpathfindingconsole.cpp +++ b/indra/newview/llfloaterpathfindingconsole.cpp @@ -248,7 +248,7 @@ void LLFloaterPathfindingConsole::onClose(bool pIsAppQuitting) {
mAgentStateSlot.disconnect();
}
- LLPathingLib::getInstance()->cleanupResidual();
+ if ( LLPathingLib::getInstance() ) { LLPathingLib::getInstance()->cleanupResidual(); }
LLFloater::onClose(pIsAppQuitting);
setHeartBeat( false );
}
|