From e8e5dfeb369d13509bd7631230373dda0c3c7b6a Mon Sep 17 00:00:00 2001 From: Dmitry Zaporozhan Date: Wed, 28 Oct 2009 20:12:48 +0200 Subject: 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 --- indra/newview/llimview.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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); -- cgit v1.2.3