aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorDiva Canto2010-06-27 12:40:17 -0700
committerDiva Canto2010-06-27 12:40:17 -0700
commit76d2f0f68e16f9b74ce4f81f9ecbf370f39f3ac6 (patch)
tree2242aa2623a25d93641da672b82f095a30ceabd0 /OpenSim/Data
parentAdded checks to XInventory DB layer to truncate names and descriptions. (diff)
downloadopensim-SC_OLD-76d2f0f68e16f9b74ce4f81f9ecbf370f39f3ac6.zip
opensim-SC_OLD-76d2f0f68e16f9b74ce4f81f9ecbf370f39f3ac6.tar.gz
opensim-SC_OLD-76d2f0f68e16f9b74ce4f81f9ecbf370f39f3ac6.tar.bz2
opensim-SC_OLD-76d2f0f68e16f9b74ce4f81f9ecbf370f39f3ac6.tar.xz
Same patch as before but for SQLite.
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/SQLite/SQLiteXInventoryData.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteXInventoryData.cs b/OpenSim/Data/SQLite/SQLiteXInventoryData.cs
index 6064538..ca651e1 100644
--- a/OpenSim/Data/SQLite/SQLiteXInventoryData.cs
+++ b/OpenSim/Data/SQLite/SQLiteXInventoryData.cs
@@ -66,11 +66,19 @@ namespace OpenSim.Data.SQLite
66 66
67 public bool StoreFolder(XInventoryFolder folder) 67 public bool StoreFolder(XInventoryFolder folder)
68 { 68 {
69 if (folder.folderName.Length > 64)
70 folder.folderName = folder.folderName.Substring(0, 64);
71
69 return m_Folders.Store(folder); 72 return m_Folders.Store(folder);
70 } 73 }
71 74
72 public bool StoreItem(XInventoryItem item) 75 public bool StoreItem(XInventoryItem item)
73 { 76 {
77 if (item.inventoryName.Length > 64)
78 item.inventoryName = item.inventoryName.Substring(0, 64);
79 if (item.inventoryDescription.Length > 128)
80 item.inventoryDescription = item.inventoryDescription.Substring(0, 128);
81
74 return m_Items.Store(item); 82 return m_Items.Store(item);
75 } 83 }
76 84