Fixes mantis #4691

This commit is contained in:
Diva Canto
2010-05-16 09:12:40 -07:00
parent b7e6b58857
commit 0b43b263d4
3 changed files with 8 additions and 3 deletions

View File

@@ -386,7 +386,7 @@ namespace OpenSim.Services.InventoryService
XInventoryItem[] items = m_Database.GetActiveGestures(principalID);
if (items.Length == 0)
return null;
return new List<InventoryItemBase>();
List<InventoryItemBase> ret = new List<InventoryItemBase>();