From f333c350c2643c3fa5a55bffe706e175adab8a24 Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Sun, 23 Aug 2020 19:36:58 -0400
Subject: [PATCH] Fix uninitialized member access in location input ctrl

---
 indra/newview/lllocationinputctrl.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/indra/newview/lllocationinputctrl.cpp b/indra/newview/lllocationinputctrl.cpp
index 619c8d8ae0a..89d50e76d90 100644
--- a/indra/newview/lllocationinputctrl.cpp
+++ b/indra/newview/lllocationinputctrl.cpp
@@ -225,7 +225,8 @@ LLLocationInputCtrl::LLLocationInputCtrl(const LLLocationInputCtrl::Params& p)
 	mIconMaturityGeneral(NULL),
 	mIconMaturityAdult(NULL),
 	mIconMaturityModerate(NULL),
-	mMaturityHelpTopic(p.maturity_help_topic)
+	mMaturityHelpTopic(p.maturity_help_topic),
+    isHumanReadableLocationVisible(true)
 {
 	// Lets replace default LLLineEditor with LLLocationLineEditor
 	// to make needed escaping while copying and cutting url
-- 
GitLab