summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorandreykproductengine <akleshchev@productengine.com>2016-02-10 19:56:08 +0200
committerandreykproductengine <akleshchev@productengine.com>2016-02-10 19:56:08 +0200
commit58bb4116dbe4a8afd5df1a7d8db074b0a43fc8f8 (patch)
tree6c661102dcf81e0fa0bb6e1ae76532650d21eb72 /indra/newview
parent70d408e1ab84c217c9ad6e18027c40c6066d6794 (diff)
MAINT-6066 crash in LLTransferSource::getID()
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/llviewerassetstorage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerassetstorage.cpp b/indra/newview/llviewerassetstorage.cpp
index 5fb99ce02f..2db9c7e67c 100755
--- a/indra/newview/llviewerassetstorage.cpp
+++ b/indra/newview/llviewerassetstorage.cpp
@@ -367,7 +367,7 @@ void LLViewerAssetStorage::_queueDataRequest(
// Set our destination file, and the completion callback.
LLTransferTargetParamsVFile tpvf;
tpvf.setAsset(uuid, atype);
- tpvf.setCallback(downloadCompleteCallback, req);
+ tpvf.setCallback(downloadCompleteCallback, *req);
LL_DEBUGS("AssetStorage") << "Starting transfer for " << uuid << LL_ENDL;
LLTransferTargetChannel *ttcp = gTransferManager.getTargetChannel(mUpstreamHost, LLTCT_ASSET);