From 335e9e1363189dff276f9ce8dc18ddb5218246dc Mon Sep 17 00:00:00 2001 From: Beq Date: Thu, 12 Nov 2020 01:35:45 +0000 Subject: [PATCH] Fix local variable scoping issue --- indra/newview/fsgridhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/fsgridhandler.cpp b/indra/newview/fsgridhandler.cpp index 3205649d32..392132f27c 100644 --- a/indra/newview/fsgridhandler.cpp +++ b/indra/newview/fsgridhandler.cpp @@ -602,7 +602,7 @@ void LLGridManager::addGrid(GridEntry* grid_entry, AddState state) { // no protocol was specified let's assume http // GRID_VALUE remains unchanged - std::string uri = "http://" + grid; + uri = "http://" + grid; } if (std::string::npos != uri.find("lindenlab.com"))