summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Zaporozhan <dzaporozhan@productengine.com>2009-10-28 20:12:48 +0200
committerDmitry Zaporozhan <dzaporozhan@productengine.com>2009-10-28 20:12:48 +0200
commite8e5dfeb369d13509bd7631230373dda0c3c7b6a (patch)
tree4b17aca05991c477a439968f83897d53ee48fa1c
parentf5b4635c434c77ab6b9fc29f07891fe9625ca3dc (diff)
Fixed critical bug EXT-1918 - [BSI] Region Messages crash the sender and anyone set busy.
NOTE - this is temporary workaround to fix the crash. --HG-- branch : product-engine
-rw-r--r--indra/newview/llimview.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp
index b429ae8cf4..6af6ff8705 100644
--- a/indra/newview/llimview.cpp
+++ b/indra/newview/llimview.cpp
@@ -1363,7 +1363,12 @@ void LLIMMgr::addMessage(
bool new_session = !hasSession(session_id);
if (new_session)
{
- LLIMModel::getInstance()->newSession(session_id, fixed_session_name, dialog, other_participant_id);
+ // *NOTE dzaporozhan
+ // Workaround for critical bug EXT-1918
+
+ // *TODO
+ // Investigate cases when session_id == NULL and find solution to handle those cases
+ LLIMModel::getInstance()->newSession(new_session_id, fixed_session_name, dialog, other_participant_id);
}
floater = findFloaterBySession(new_session_id);