aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/Cache/AssetTransactionManager.cs11
1 files changed, 7 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetTransactionManager.cs b/OpenSim/Framework/Communications/Cache/AssetTransactionManager.cs
index 55b255a..cbf63ca 100644
--- a/OpenSim/Framework/Communications/Cache/AssetTransactionManager.cs
+++ b/OpenSim/Framework/Communications/Cache/AssetTransactionManager.cs
@@ -49,11 +49,14 @@ namespace OpenSim.Framework.Communications.Cache
49 // Methods 49 // Methods
50 public AgentAssetTransactions AddUser(LLUUID userID) 50 public AgentAssetTransactions AddUser(LLUUID userID)
51 { 51 {
52 if (!AgentTransactions.ContainsKey(userID)) 52 lock (AgentTransactions)
53 { 53 {
54 AgentAssetTransactions transactions = new AgentAssetTransactions(userID, this, m_dumpAssetsToFile); 54 if (!AgentTransactions.ContainsKey(userID))
55 AgentTransactions.Add(userID, transactions); 55 {
56 return transactions; 56 AgentAssetTransactions transactions = new AgentAssetTransactions(userID, this, m_dumpAssetsToFile);
57 AgentTransactions.Add(userID, transactions);
58 return transactions;
59 }
57 } 60 }
58 return null; 61 return null;
59 } 62 }