* Patch from JHurliman

* Updates to libomv r2243, 
* Remove lots of unnecessary typecasts
* Improves SendWindData()
Thanks jhurliman. 
* Will update OpenSim-libs in 10 minutes..
This commit is contained in:
Teravus Ovares
2008-09-26 17:25:22 +00:00
parent 34cfd710ce
commit 16b6738cda
42 changed files with 233 additions and 292 deletions

View File

@@ -70,7 +70,7 @@ namespace OpenSim.Grid.AssetServer
if (p.Length > 0)
{
UUID assetID = null;
UUID assetID = UUID.Zero;
if (!UUID.TryParse(p[0], out assetID))
{

View File

@@ -614,7 +614,7 @@ namespace OpenSim.Grid.GridServer
//
// this particular section of the mod attempts to receive a value from the region's xml file by way of
// OSG1GridServices for the region's owner
sim.owner_uuid = (string)requestData["master_avatar_uuid"];
sim.owner_uuid = (UUID)(string)requestData["master_avatar_uuid"];
try
{

View File

@@ -52,7 +52,7 @@ namespace OpenSim.Grid.MessagingServer
public UUID getitem(int index)
{
UUID result = null;
UUID result = UUID.Zero;
lock (AgentList)
{
if (index > 0 && index < AgentList.Count)

View File

@@ -63,7 +63,7 @@ namespace OpenSim.Grid.MessagingServer
if (p.Length > 0)
{
UUID assetID = null;
UUID assetID = UUID.Zero;
if (!UUID.TryParse(p[0], out assetID))
{