diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp
index e459109d6a1d545a1becd3503aafca1270c24ee2..7a65d6d0b068a86a7972bf1f279cdb0c7d64b60f 100644
--- a/indra/newview/pipeline.cpp
+++ b/indra/newview/pipeline.cpp
@@ -3751,7 +3751,7 @@ void LLPipeline::renderHighlights()
 		for (U32 i = 0; i < count; i++)
 		{
 			LLFace *facep = mSelectedFaces[i];
-			if (!facep || (facep->getDrawable() && facep->getDrawable()->isDead()))
+			if (!facep || !facep->getDrawable() || facep->getDrawable()->isDead())
 			{
 				LL_WARNS() << "Bad face on selection" << LL_ENDL;
 				continue;
@@ -3799,7 +3799,7 @@ void LLPipeline::renderHighlights()
 		for (U32 i = 0; i < count; i++)
 		{
 			LLFace *facep = mSelectedFaces[i];
-			if (!facep || (facep->getDrawable() && facep->getDrawable()->isDead()))
+			if (!facep || !facep->getDrawable() || facep->getDrawable()->isDead())
 			{
 				LL_WARNS() << "Bad face on selection" << LL_ENDL;
 				continue;
@@ -3829,7 +3829,7 @@ void LLPipeline::renderHighlights()
 		for (U32 i = 0; i < count; i++)
 		{
 			LLFace *facep = mSelectedFaces[i];
-			if (!facep || (facep->getDrawable() && facep->getDrawable()->isDead()))
+			if (!facep || !facep->getDrawable() || facep->getDrawable()->isDead())
 			{
 				LL_WARNS() << "Bad face on selection" << LL_ENDL;
 				continue;