* Blind fix what looks like a bug in the new land MSSQL code
* The data returned from the db was never inserted in the list to be processed and return * This is an example where a warning has revealed a bug0.6.0-stable
parent
de467f4903
commit
a4078c280a
|
@ -547,7 +547,7 @@ namespace OpenSim.Data.MSSQL
|
||||||
{
|
{
|
||||||
while (readerLandData.Read())
|
while (readerLandData.Read())
|
||||||
{
|
{
|
||||||
LandData data = buildLandData(readerLandData);
|
landDataForRegion.Add(buildLandData(readerLandData));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue