diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim.Storage.LocalStorageBerkeleyDB/BDBLocalStorage.cs | 2 | ||||
-rw-r--r-- | prebuild.xml | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/OpenSim.Storage.LocalStorageBerkeleyDB/BDBLocalStorage.cs b/OpenSim.Storage.LocalStorageBerkeleyDB/BDBLocalStorage.cs index 9a63dc7..db7252b 100644 --- a/OpenSim.Storage.LocalStorageBerkeleyDB/BDBLocalStorage.cs +++ b/OpenSim.Storage.LocalStorageBerkeleyDB/BDBLocalStorage.cs | |||
@@ -62,7 +62,7 @@ namespace OpenSim.Storage.LocalStorageBDB | |||
62 | DbEntry data = new DbEntry(); | 62 | DbEntry data = new DbEntry(); |
63 | lock (sim) | 63 | lock (sim) |
64 | { | 64 | { |
65 | sim.PutUnique(null, key, data, DbFile.WriteFlags.AutoCommit); | 65 | sim.PutUnique(null, ref key, ref data, DbFile.WriteFlags.AutoCommit); |
66 | } | 66 | } |
67 | } | 67 | } |
68 | public void RemovePrim(LLUUID primID) | 68 | public void RemovePrim(LLUUID primID) |
diff --git a/prebuild.xml b/prebuild.xml index 09d714e..0c37ab1 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -498,6 +498,32 @@ | |||
498 | <Match pattern="*.cs" recurse="true"/> | 498 | <Match pattern="*.cs" recurse="true"/> |
499 | </Files> | 499 | </Files> |
500 | </Project> | 500 | </Project> |
501 | |||
502 | <Project name="OpenSim.Storage.LocalStorageBerkeleyDB" path="OpenSim.Storage.LocalStorageBerkeleyDB" type="Library"> | ||
503 | <Configuration name="Debug"> | ||
504 | <Options> | ||
505 | <OutputPath>../bin/</OutputPath> | ||
506 | </Options> | ||
507 | </Configuration> | ||
508 | <Configuration name="Release"> | ||
509 | <Options> | ||
510 | <OutputPath>../bin/</OutputPath> | ||
511 | </Options> | ||
512 | </Configuration> | ||
513 | |||
514 | <ReferencePath>../bin/</ReferencePath> | ||
515 | <Reference name="System" localCopy="false"/> | ||
516 | <Reference name="System.Xml"/> | ||
517 | <Reference name="System.Data"/> | ||
518 | <Reference name="Kds.Serialization.dll"/> | ||
519 | <Reference name="libDB_dotNET43.dll"/> | ||
520 | <Reference name="libsecondlife.dll"/> | ||
521 | <Reference name="OpenSim.Framework"/> | ||
522 | <Reference name="OpenSim.Framework.Console"/> | ||
523 | <Files> | ||
524 | <Match pattern="*.cs" recurse="true"/> | ||
525 | </Files> | ||
526 | </Project> | ||
501 | 527 | ||
502 | 528 | ||
503 | </Solution> | 529 | </Solution> |