diff options
author | Justin Clark-Casey (justincc) | 2012-02-10 19:58:34 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-02-10 19:58:34 +0000 |
commit | 44d84bc2779165e75224975e83ca4539a00e9d24 (patch) | |
tree | 731a172f1d8a8065281363f54fadb5ea09efa27d /OpenSim/Region/Framework | |
parent | Fix: Unable to remove AV from friend list (sqldb-bug) http://opensimulator.or... (diff) | |
download | opensim-SC_OLD-44d84bc2779165e75224975e83ca4539a00e9d24.zip opensim-SC_OLD-44d84bc2779165e75224975e83ca4539a00e9d24.tar.gz opensim-SC_OLD-44d84bc2779165e75224975e83ca4539a00e9d24.tar.bz2 opensim-SC_OLD-44d84bc2779165e75224975e83ca4539a00e9d24.tar.xz |
Fix bug where somebody taking a copy of an object they didn't own that was rezzed before the region was restarted would wrongly place the copy in the object owner's inventory.
Addresses http://opensimulator.org/mantis/view.php?id=5825
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/AsyncSceneObjectGroupDeleter.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/AsyncSceneObjectGroupDeleter.cs b/OpenSim/Region/Framework/Scenes/AsyncSceneObjectGroupDeleter.cs index 5dfd3e0..f678d07 100644 --- a/OpenSim/Region/Framework/Scenes/AsyncSceneObjectGroupDeleter.cs +++ b/OpenSim/Region/Framework/Scenes/AsyncSceneObjectGroupDeleter.cs | |||
@@ -148,7 +148,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
148 | x = m_inventoryDeletes.Dequeue(); | 148 | x = m_inventoryDeletes.Dequeue(); |
149 | 149 | ||
150 | m_log.DebugFormat( | 150 | m_log.DebugFormat( |
151 | "[ASYNC DELETER]: Sending object to user's inventory, action {1}, count {2}, {0} item(s) remaining.", left, x.action, x.objectGroups.Count); | 151 | "[ASYNC DELETER]: Sending object to user's inventory, action {1}, count {2}, {0} item(s) remaining.", |
152 | left, x.action, x.objectGroups.Count); | ||
152 | 153 | ||
153 | try | 154 | try |
154 | { | 155 | { |