From 941b9a00213f07c977a0305b11c8a97e98ee8f55 Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Wed, 9 Jun 2021 18:41:16 -0400
Subject: [PATCH] Utilize char buffer based unzip_llsd for decoding pathfinding
 navmesh

---
 indra/newview/llpathfindingnavmesh.cpp | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/indra/newview/llpathfindingnavmesh.cpp b/indra/newview/llpathfindingnavmesh.cpp
index 0287c07f962..05063fafc42 100644
--- a/indra/newview/llpathfindingnavmesh.cpp
+++ b/indra/newview/llpathfindingnavmesh.cpp
@@ -140,12 +140,9 @@ void LLPathfindingNavMesh::handleNavMeshResult(const LLSD &pContent, U32 pNavMes
 		if ( pContent.has(NAVMESH_DATA_FIELD) )
 		{
 			const LLSD::Binary &value = pContent.get(NAVMESH_DATA_FIELD).asBinary();
-			unsigned int binSize = value.size();
-			std::string newStr(reinterpret_cast<const char *>(&value[0]), binSize);
-			std::istringstream streamdecomp( newStr );
 			unsigned int decompBinSize = 0;
 			bool valid = false;
-			U8* pUncompressedNavMeshContainer = unzip_llsdNavMesh( valid, decompBinSize, streamdecomp, binSize ) ;
+			U8* pUncompressedNavMeshContainer = unzip_llsdNavMesh( valid, decompBinSize, value.data(), value.size()) ;
 			if ( !valid )
 			{
 				LL_WARNS() << "Unable to decompress the navmesh llsd." << LL_ENDL;
-- 
GitLab