diff options
author | Charles Krinke | 2008-06-05 13:57:58 +0000 |
---|---|---|
committer | Charles Krinke | 2008-06-05 13:57:58 +0000 |
commit | c289c2b6d48cb9f46a7573ed70705a13dda9c772 (patch) | |
tree | 140dbd721114536369c97a0a0470ec16f13efc45 /OpenSim/Data/MSSQL/MSSQLInventoryData.cs | |
parent | Mantis#1451. Thank you kindly, Mikem for a patch that addresses: (diff) | |
download | opensim-SC_OLD-c289c2b6d48cb9f46a7573ed70705a13dda9c772.zip opensim-SC_OLD-c289c2b6d48cb9f46a7573ed70705a13dda9c772.tar.gz opensim-SC_OLD-c289c2b6d48cb9f46a7573ed70705a13dda9c772.tar.bz2 opensim-SC_OLD-c289c2b6d48cb9f46a7573ed70705a13dda9c772.tar.xz |
Mantis#1450. Thank you kindly, Boscata for a patch that addresses:
I have detected a bug of conversion data type in OpenSim.Data.MSSQL.MSSQLInventoryData.addInventoryItem(InventoryItemBase item)
in the GroupOwned field.
My sollution is to change the flield to bit in the table. In the
readInventoryItem(IDataReader reader) change too item.Flags =
(uint) reader["flags"]; to item.Flags = Convert.ToUInt32(reader["flags"]);
Now Inventory runs fine.
Diffstat (limited to 'OpenSim/Data/MSSQL/MSSQLInventoryData.cs')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLInventoryData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLInventoryData.cs b/OpenSim/Data/MSSQL/MSSQLInventoryData.cs index 0c1c3f1..128fb8f 100644 --- a/OpenSim/Data/MSSQL/MSSQLInventoryData.cs +++ b/OpenSim/Data/MSSQL/MSSQLInventoryData.cs | |||
@@ -317,7 +317,7 @@ namespace OpenSim.Data.MSSQL | |||
317 | item.CreationDate = (int) reader["creationDate"]; | 317 | item.CreationDate = (int) reader["creationDate"]; |
318 | item.GroupID = new LLUUID(reader["groupID"].ToString()); | 318 | item.GroupID = new LLUUID(reader["groupID"].ToString()); |
319 | item.GroupOwned = Convert.ToBoolean(reader["groupOwned"]); | 319 | item.GroupOwned = Convert.ToBoolean(reader["groupOwned"]); |
320 | item.Flags = (uint) reader["flags"]; | 320 | item.Flags = Convert.ToUInt32(reader["flags"]); |
321 | 321 | ||
322 | return item; | 322 | return item; |
323 | } | 323 | } |