From f7e45332bd99fe22c475c8105f8651866c38a311 Mon Sep 17 00:00:00 2001 From: aragornarda Date: Sat, 25 May 2013 18:26:42 +0300 Subject: [PATCH 1/2] small typo fix --- README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index a441bfedf..8d470c1c9 100644 --- a/README +++ b/README @@ -15,8 +15,8 @@ Singularity Viewer is a SecondLife(tm) protocol compatible client application. It can be used to access SecondLife services as well as a number of others such as those based upon the OpenSim platform. -Singulariy is maintained by a small group of volunteers who can be contacted -both, in-world (SingularityViewer group) as well on IRC (#SingularityViewer +Singularity is maintained by a small group of volunteers who can be contacted +both, in-world (SingularityViewer group) as well as on IRC (#SingularityViewer @ FreeNode). Bug requests and features requests can be submitted through our Issue Tracker (http://code.google.com/p/singularity-viewer/issues/list or from the viewer menu: Help --> Bug Reporting --> Singularity Issue Tracker...) From f4f888c1722309c362b491628d1997369651769e Mon Sep 17 00:00:00 2001 From: Latif Khalifa Date: Sat, 21 Sep 2013 18:22:59 +0200 Subject: [PATCH 2/2] Potential fix for a crash on HG OpenSim teleports by Liru --- indra/newview/llvoavatar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 9f7ad95fd..ee2fff671 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -2530,7 +2530,7 @@ void LLVOAvatar::idleUpdateMisc(bool detailed_update) !(attached_object->mDrawable->getSpatialBridge() && attached_object->mDrawable->getSpatialBridge()->getRadius() < 2.0)); - if (visibleAttachment && attached_object && !attached_object->isDead() && attachment->getValid()) + if (visibleAttachment && attached_object && attached_object->mDrawable && !attached_object->isDead() && attachment->getValid()) { // if selecting any attachments, update all of them as non-damped if (LLSelectMgr::getInstance()->getSelection()->getObjectCount() && LLSelectMgr::getInstance()->getSelection()->isAttachment())