diff options
author | Dave Parks <davep@lindenlab.com> | 2010-11-29 11:54:58 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-11-29 11:54:58 -0600 |
commit | 689555fda2d580808ef4b9012b14716b4d1193e5 (patch) | |
tree | df001a71b9eda182c3459187dbc592d7f2cbb4fd /indra | |
parent | afa2999f067097cf833bce1517a3e75ccd20a32a (diff) |
Get rid of some redudnant calls to constructUrl
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llmeshrepository.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp index 1ff11f2c01..d8aeb1bf81 100755 --- a/indra/newview/llmeshrepository.cpp +++ b/indra/newview/llmeshrepository.cpp @@ -828,7 +828,7 @@ bool LLMeshRepoThread::fetchMeshDecomposition(const LLUUID& mesh_id) { ++sActiveLODRequests; LLMeshRepository::sHTTPRequestCount++; - mCurlRequest->getByteRange(constructUrl(mesh_id), headers, offset, size, + mCurlRequest->getByteRange(http_url, headers, offset, size, new LLMeshDecompositionResponder(mesh_id, offset, size)); } } @@ -900,7 +900,7 @@ bool LLMeshRepoThread::fetchMeshPhysicsShape(const LLUUID& mesh_id) { ++sActiveLODRequests; LLMeshRepository::sHTTPRequestCount++; - mCurlRequest->getByteRange(constructUrl(mesh_id), headers, offset, size, + mCurlRequest->getByteRange(http_url, headers, offset, size, new LLMeshPhysicsShapeResponder(mesh_id, offset, size)); } } |