diff options
author | Dave Parks <davep@lindenlab.com> | 2010-11-30 00:26:17 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-11-30 00:26:17 -0600 |
commit | d5227c6dd155081acb5c3ed0d333f0918ba886ca (patch) | |
tree | 2249a7b1dfd1db40d4142fd93a861a158df6186b /indra/newview/llmeshrepository.cpp | |
parent | b6dc4a4bf18e79ac4b67a5bac48aab15ef27f50a (diff) | |
parent | 88ed5581d5b5df150d4adac3e1fe53fdef84c959 (diff) |
merge
Diffstat (limited to 'indra/newview/llmeshrepository.cpp')
-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 17be8586b5..6d117c8c39 100755 --- a/indra/newview/llmeshrepository.cpp +++ b/indra/newview/llmeshrepository.cpp @@ -787,7 +787,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)); } } @@ -859,7 +859,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)); } } |