diff --git a/indra/newview/llinventoryfilter.cpp b/indra/newview/llinventoryfilter.cpp
index c884e451f6a77822c0511772bdd0139f4ce5393a..9d5b2389bc7364be74842b7df5432f99bf00b2a9 100644
--- a/indra/newview/llinventoryfilter.cpp
+++ b/indra/newview/llinventoryfilter.cpp
@@ -47,6 +47,8 @@
 #include "llclipboard.h"
 #include "lltrans.h"
 
+#include <boost/tokenizer.hpp>
+
 LLTrace::BlockTimerStatHandle FT_FILTER_CLIPBOARD("Filter Clipboard");
 
 LLInventoryFilter::FilterOps::FilterOps(const Params& p)
diff --git a/indra/newview/llsidepaneliteminfo.cpp b/indra/newview/llsidepaneliteminfo.cpp
index ba27a642f4a0a5e8cb287a74a091e43a155fb971..a146cc58304bec3f9b1d633eb78269b3ff57303f 100644
--- a/indra/newview/llsidepaneliteminfo.cpp
+++ b/indra/newview/llsidepaneliteminfo.cpp
@@ -789,7 +789,7 @@ void LLSidepanelItemInfo::setPropertiesFieldsEnabled(bool enabled)
 {
     for(auto const& item : property_fields)
     {
-        getChildView(fields[t])->setEnabled(false);
+        getChildView(item)->setEnabled(false);
     }
 }
 
diff --git a/indra/newview/llsidepaneltaskinfo.cpp b/indra/newview/llsidepaneltaskinfo.cpp
index 5283484d1e79b93dd9a6dc8408102341be7f5408..3337717ba62fe2388d205c6a6204fc3be2dea191 100644
--- a/indra/newview/llsidepaneltaskinfo.cpp
+++ b/indra/newview/llsidepaneltaskinfo.cpp
@@ -1033,11 +1033,7 @@ void LLSidepanelTaskInfo::onCommitPerm(BOOL enabled, U8 field, U32 perm)
 
 	LLSelectMgr::getInstance()->selectionSetObjectPermissions(field, enabled, perm);
 
-    LLSidepanelTaskInfo* self = (LLSidepanelTaskInfo*)data;
-    if (self)
-    {
-        self->disablePermissions();
-    }
+	disablePermissions();
 }
 
 void LLSidepanelTaskInfo::onCommitGroupShare(const LLSD& user_data)
diff --git a/indra/newview/lltexturecache.cpp b/indra/newview/lltexturecache.cpp
index 2aa672a08d901899a2fa6eae6d51f96d20cce425..3423b25a1c9726e663e2715fb53d2d3f72936e26 100644
--- a/indra/newview/lltexturecache.cpp
+++ b/indra/newview/lltexturecache.cpp
@@ -850,7 +850,7 @@ LLTextureCache::LLTextureCache(bool threaded)
 	  mTexturesSizeTotal(0),
 	  mDoPurge(false)
 {
-    mHeaderAPRFilePoolp = new LLVolatileAPRPool(); // is_local = true, because this pool is for headers, headers are under own mutex
+    mHeaderAPRFilePoolp = new LLVolatileAPRPool("Texture Cache Header"); // is_local = true, because this pool is for headers, headers are under own mutex
 }
 
 LLTextureCache::~LLTextureCache()
diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp
index e4b3bb31ded7df1d474d6b33a12d4a953a449fa3..5dae8eeea1045db960df1b0e0570a5ec8540fe67 100644
--- a/indra/newview/llviewermenu.cpp
+++ b/indra/newview/llviewermenu.cpp
@@ -7609,9 +7609,9 @@ void handle_dump_attachments(void*)
 		LLVOAvatar::attachment_map_t::iterator curiter = iter++;
 		LLViewerJointAttachment* attachment = curiter->second;
 		S32 key = curiter->first;
-		for (const auto& attached_object : attachment->mAttachedObjects)
+		for (auto& attached_object : attachment->mAttachedObjects)
         {
-            BOOL visible = (attached_object != NULL &&
+            BOOL visible = (attached_object.notNull() &&
 							attached_object->mDrawable.notNull() && 
 							!attached_object->mDrawable->isRenderType(0));
 			LLVector3 pos;
diff --git a/indra/newview/llviewerwindow.h b/indra/newview/llviewerwindow.h
index 74ea77141752b80be3359568239c84df377ef945..025e277de94f50ed2af82bd9d8225a0b2fd10217 100644
--- a/indra/newview/llviewerwindow.h
+++ b/indra/newview/llviewerwindow.h
@@ -192,7 +192,7 @@ public:
 	/*virtual*/ BOOL handleMiddleMouseUp(LLWindow *window,  LLCoordGL pos, MASK mask) override;
 	/*virtual*/ BOOL handleOtherMouseDown(LLWindow *window, LLCoordGL pos, MASK mask, S32 button) override;
 	/*virtual*/ BOOL handleOtherMouseUp(LLWindow *window, LLCoordGL pos, MASK mask, S32 button) override;
-	/*virtual*/ BOOL handleOtherMouse(LLWindow *window, LLCoordGL pos, MASK mask, S32 button, bool down) override;
+	BOOL handleOtherMouse(LLWindow *window, LLCoordGL pos, MASK mask, S32 button, bool down);
 	/*virtual*/ LLWindowCallbacks::DragNDropResult handleDragNDrop(LLWindow *window, LLCoordGL pos, MASK mask, LLWindowCallbacks::DragNDropAction action, std::string data) override;
     /*virtual*/ void handleMouseMove(LLWindow *window,  LLCoordGL pos, MASK mask) override;
 	/*virtual*/ void handleMouseLeave(LLWindow *window) override;
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index 290c423ed07976a81cf697268c9c1877702be6e7..eaf8e5e9e276ec41a312545d5f44749c97a09e3c 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -1405,7 +1405,7 @@ void LLVOAvatar::calculateSpatialExtents(LLVector4a& newMin, LLVector4a& newMax)
 
 		if (attachment->getValid())
 		{
-			for (const auto& attached_object : attachment->mAttachedObjects)
+			for (auto& attached_object : attachment->mAttachedObjects)
 			{
                     // Don't we need to look at children of attached_object as well?
 				if (attached_object && !attached_object->isHUDAttachment())
@@ -1881,7 +1881,7 @@ LLViewerObject* LLVOAvatar::lineSegmentIntersectRiggedAttachments(const LLVector
 		{
 			LLViewerJointAttachment* attachment = attach_pair.second;
 
-			for(const auto& attached_object : attachment->mAttachedObjects)
+			for(auto& attached_object : attachment->mAttachedObjects)
 			{
 					
 				if (attached_object->lineSegmentIntersect(start, local_end, face, pick_transparent, pick_rigged, face_hit, &local_intersection, tex_coord, normal, tangent))
@@ -2695,7 +2695,7 @@ void LLVOAvatar::idleUpdateMisc(bool detailed_update)
 		{
 			LLViewerJointAttachment* attachment = attach_pair.second;
 
-			for(const auto& attached_object : attachment->mAttachedObjects)
+			for(auto& attached_object : attachment->mAttachedObjects)
 			{
 				BOOL visibleAttachment = visible || (attached_object && 
 													 !(attached_object->mDrawable->getSpatialBridge() &&
@@ -8431,7 +8431,7 @@ void LLVOAvatar::updateMeshTextures()
     {
 		LLViewerJointAttachment* attachment = attachment_point.second;
 
-		for (const auto& attached_object : attachment->mAttachedObjects)
+		for (auto& attached_object : attachment->mAttachedObjects)
         {
             if (attached_object && !attached_object->isDead())
 			{
@@ -10049,7 +10049,7 @@ void LLVOAvatar::getAssociatedVolumes(std::vector<LLVOVolume*>& volumes)
 {
 	for ( const auto& pair : mAttachmentPoints)
 	{
-		for(const auto& attached_object : pair.second->mAttachedObjects)
+		for(auto& attached_object : pair.second->mAttachedObjects)
 		{
 			if (!attached_object)
 				continue;
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp
index b73a6a80edf54a043b331f36576a1cd11f12f073..bfbef6fdf65d1ac0ff42f1ac2432eeb3f638ff35 100644
--- a/indra/newview/pipeline.cpp
+++ b/indra/newview/pipeline.cpp
@@ -10117,7 +10117,7 @@ void LLPipeline::generateImpostor(LLVOAvatar* avatar)
 
 		for (const auto& attach_pair : avatar->mAttachmentPoints)
 		{
-			for (const auto& attached_object : attach_pair.second->mAttachedObjects)
+			for (auto& attached_object : attach_pair.second->mAttachedObjects)
 			{
 				if (attached_object)
 				{