From 864ff24c9dbca21820c8df02b76a197aec64baf5 Mon Sep 17 00:00:00 2001 From: Drake Arconis <drake@alchemyviewer.org> Date: Fri, 14 Aug 2015 13:12:39 -0400 Subject: [PATCH] Ahem. Yay. --- indra/newview/llpanellogin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llpanellogin.cpp b/indra/newview/llpanellogin.cpp index 7e9f4987a8..98e83ab248 100755 --- a/indra/newview/llpanellogin.cpp +++ b/indra/newview/llpanellogin.cpp @@ -266,7 +266,7 @@ void LLPanelLogin::addFavoritesToStartLocation() { std::string label = (*iter1)["name"].asString(); std::string value = (*iter1)["slurl"].asString(); - if(!label.empty() && !value.empty()) + if (label != LLStringUtil::null && value != LLStringUtil::null) { combo->add(label, value); } -- GitLab