summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Yap <none@none>2011-06-03 14:41:08 -0400
committerJonathan Yap <none@none>2011-06-03 14:41:08 -0400
commitcc7a041bfe908faa1a256d13d35cb1ad17358f60 (patch)
treeb6d1954926ebd6eca6341c7d8be130d36f2987dc
parent361384ebb9f41dbccbaab779a085edb773f0a734 (diff)
Fix for Storm-956 crashes viewer when connected to non-LL grids
-rw-r--r--doc/contributions.txt1
-rw-r--r--indra/newview/llviewermessage.cpp10
2 files changed, 8 insertions, 3 deletions
diff --git a/doc/contributions.txt b/doc/contributions.txt
index dfbccb5a6c..94c73a2f52 100644
--- a/doc/contributions.txt
+++ b/doc/contributions.txt
@@ -440,6 +440,7 @@ Jonathan Yap
STORM-1095
STORM-1236
STORM-1259
+ STORM-1313
Kage Pixel
VWR-11
Ken March
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp
index 3832be727f..49188e46c6 100644
--- a/indra/newview/llviewermessage.cpp
+++ b/indra/newview/llviewermessage.cpp
@@ -6483,10 +6483,14 @@ void process_script_dialog(LLMessageSystem* msg, void**)
LLSD payload;
LLUUID object_id;
- LLUUID owner_id;
-
msg->getUUID("Data", "ObjectID", object_id);
- msg->getUUID("OwnerData", "OwnerID", owner_id);
+
+// For compability with OS grids first check for presence of extended packet before fetching data.
+ LLUUID owner_id;
+ if (gMessageSystem->getNumberOfBlocks("OwnerData") > 0)
+ {
+ msg->getUUID("OwnerData", "OwnerID", owner_id);
+ }
if (LLMuteList::getInstance()->isMuted(object_id) || LLMuteList::getInstance()->isMuted(owner_id))
{