summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2010-11-29 11:54:58 -0600
committerDave Parks <davep@lindenlab.com>2010-11-29 11:54:58 -0600
commit689555fda2d580808ef4b9012b14716b4d1193e5 (patch)
treedf001a71b9eda182c3459187dbc592d7f2cbb4fd /indra
parentafa2999f067097cf833bce1517a3e75ccd20a32a (diff)
Get rid of some redudnant calls to constructUrl
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llmeshrepository.cpp4
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));
}
}