diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp
index 87cdbe864eb56106c0a3fab8c5e90028437917f4..324a240e5d66d139929ae36cc39880e206ba44fb 100644
--- a/indra/newview/llavataractions.cpp
+++ b/indra/newview/llavataractions.cpp
@@ -1276,7 +1276,7 @@ void LLAvatarActions::requestFriendship(const LLUUID& target_id, const std::stri
 //static
 bool LLAvatarActions::isFriend(const LLUUID& id)
 {
-	return (nullptr != LLAvatarTracker::instance().getBuddyInfo(id) );
+	return LLAvatarTracker::instance().isBuddy(id);
 }
 
 // static
diff --git a/indra/newview/llcallingcard.cpp b/indra/newview/llcallingcard.cpp
index 9685afb88155edbf03c2e76ac1f0cc0a45d87d89..4844396391a84dcb4a2003dc65b37d757e5d3079 100644
--- a/indra/newview/llcallingcard.cpp
+++ b/indra/newview/llcallingcard.cpp
@@ -473,7 +473,7 @@ void LLAvatarTracker::notifyObservers()
 		friend_observer->changed(mModifyMask);
 	}
 
-	for (auto buddy_id : mChangedBuddyIDs)
+	for (const auto& buddy_id : mChangedBuddyIDs)
 	{
 		notifyParticularFriendObservers(buddy_id);
 	}
diff --git a/indra/newview/llimprocessing.cpp b/indra/newview/llimprocessing.cpp
index 7150db280ddb0c2bf3f1ac0b3c24adc943aaaa0b..0570480325b30ec09eb237ecae06d7d4a5e7bea4 100644
--- a/indra/newview/llimprocessing.cpp
+++ b/indra/newview/llimprocessing.cpp
@@ -509,7 +509,7 @@ void LLIMProcessing::processNewMessage(LLUUID from_id,
         // object IMs contain sender object id in session_id (STORM-1209)
         || (dialog == IM_FROM_TASK && LLMuteList::getInstance()->isMuted(session_id));
 	bool is_owned_by_me = false;
-	bool is_friend = (LLAvatarTracker::instance().getBuddyInfo(from_id) == nullptr) ? false : true;
+	bool is_friend = LLAvatarTracker::instance().isBuddy(from_id);
 	bool accept_im_from_only_friend = gSavedSettings.getBOOL("VoiceCallsFriendsOnly");
 	bool is_linden = chat.mSourceType != CHAT_SOURCE_OBJECT &&
         LLMuteList::getInstance()->isLinden(name);
@@ -1389,7 +1389,7 @@ void LLIMProcessing::processNewMessage(LLUUID from_id,
             {
                 return;
             }
-            else if (gSavedSettings.getBOOL("VoiceCallsFriendsOnly") && (LLAvatarTracker::instance().getBuddyInfo(from_id) == NULL))
+            else if (gSavedSettings.getBOOL("VoiceCallsFriendsOnly") && !LLAvatarTracker::instance().isBuddy(from_id))
             {
                 return;
             }
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp
index 79c54d969e8e0d9827ca440dfbbad1a3f1d85043..14d1783c35233f192dfb87807501908c962d2831 100644
--- a/indra/newview/llimview.cpp
+++ b/indra/newview/llimview.cpp
@@ -2695,7 +2695,7 @@ void LLIMMgr::addMessage(
 	if (gSavedSettings.getBOOL("VoiceCallsFriendsOnly") && !from_linden)
 	{
 		// Evaluate if we need to skip this message when that setting is true (default is false)
-		skip_message = (LLAvatarTracker::instance().getBuddyInfo(other_participant_id) == nullptr); // Skip non friends...
+		skip_message = !LLAvatarTracker::instance().isBuddy(other_participant_id); // Skip non friends...
 		skip_message &= !(other_participant_id == gAgentID); // You are your best friend... Don't skip yourself
 	}
 
@@ -3100,7 +3100,7 @@ void LLIMMgr::inviteToSession(
 	if (voice_invite)
 	{
 		bool isRejectGroupCall = (gSavedSettings.getBOOL("VoiceCallsRejectGroup") && (notify_box_type == "VoiceInviteGroup"));
-		bool isRejectNonFriendCall = (gSavedSettings.getBOOL("VoiceCallsFriendsOnly") && (LLAvatarTracker::instance().getBuddyInfo(caller_id) == nullptr));
+		bool isRejectNonFriendCall = (gSavedSettings.getBOOL("VoiceCallsFriendsOnly") && !LLAvatarTracker::instance().isBuddy(caller_id));
 		if (isRejectGroupCall || isRejectNonFriendCall || gAgent.isDoNotDisturb())
 		{
 			if (gAgent.isDoNotDisturb() && !isRejectGroupCall && !isRejectNonFriendCall)
diff --git a/indra/newview/llpanelpeople.cpp b/indra/newview/llpanelpeople.cpp
index b652866b55326befaa58118786645f860b7c6ab7..0fa375400c9cc21bf4bebf6ba5fea76e138866ec 100644
--- a/indra/newview/llpanelpeople.cpp
+++ b/indra/newview/llpanelpeople.cpp
@@ -918,14 +918,14 @@ void LLPanelPeople::updateButtons()
 		if (item_selected)
 		{
 			selected_id = selected_uuids.front();
-			is_friend = LLAvatarTracker::instance().getBuddyInfo(selected_id) != nullptr;
+			is_friend = LLAvatarTracker::instance().isBuddy(selected_id);
 			is_self = gAgent.getID() == selected_id;
 		}
 		else if (multiple_selected)
 		{
 			for (uuid_vec_t::const_iterator itr = selected_uuids.begin(); itr != selected_uuids.end(); ++itr)
 			{
-				if (LLAvatarTracker::instance().getBuddyInfo(*itr) != nullptr)
+				if (LLAvatarTracker::instance().isBuddy(*itr))
 				{
 					is_friend = true;
 				}