aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-09-06 00:11:50 +0000
committerJustin Clarke Casey2008-09-06 00:11:50 +0000
commita4078c280aed28aeb3171c17121a7ce77d897cba (patch)
treee11bdef4438fbb4d00f01c44e03a1e263895ca6a /OpenSim
parent* Remove lots of warnings from the CMS module (diff)
downloadopensim-SC_OLD-a4078c280aed28aeb3171c17121a7ce77d897cba.zip
opensim-SC_OLD-a4078c280aed28aeb3171c17121a7ce77d897cba.tar.gz
opensim-SC_OLD-a4078c280aed28aeb3171c17121a7ce77d897cba.tar.bz2
opensim-SC_OLD-a4078c280aed28aeb3171c17121a7ce77d897cba.tar.xz
* 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 bug
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Data/MSSQL/MSSQLRegionData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLRegionData.cs b/OpenSim/Data/MSSQL/MSSQLRegionData.cs
index 6164dab..46aa6c9 100644
--- a/OpenSim/Data/MSSQL/MSSQLRegionData.cs
+++ b/OpenSim/Data/MSSQL/MSSQLRegionData.cs
@@ -547,7 +547,7 @@ namespace OpenSim.Data.MSSQL
547 { 547 {
548 while (readerLandData.Read()) 548 while (readerLandData.Read())
549 { 549 {
550 LandData data = buildLandData(readerLandData); 550 landDataForRegion.Add(buildLandData(readerLandData));
551 } 551 }
552 } 552 }
553 } 553 }