mantis 8781: fix

This commit is contained in:
UbitUmarov
2020-10-16 18:48:58 +01:00
parent b09b0e6476
commit 9075c3fd08
2 changed files with 3 additions and 3 deletions

View File

@@ -193,7 +193,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Transfer
if (im.binaryBucket.Length >= 34 && im.binaryBucket.Length % 17 == 0)
{
byte[] iddata = im.binaryBucket;
for (int i = 17; i < im.binaryBucket.Length - 17; i += 17)
for (int i = 17; i <= im.binaryBucket.Length - 17; i += 17)
ids[new UUID(iddata, i + 1)] = (AssetType)im.binaryBucket[i];
}