aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMike Mazur2009-02-16 02:28:24 +0000
committerMike Mazur2009-02-16 02:28:24 +0000
commit4c6b7234de93fb34567614ff3f2bce7c02d90ca6 (patch)
tree9cbd388d07e78abfdf9909d160caf4a5ddd2b130
parent- clean up using references as well as References in prebuild.xml (diff)
downloadopensim-SC_OLD-4c6b7234de93fb34567614ff3f2bce7c02d90ca6.zip
opensim-SC_OLD-4c6b7234de93fb34567614ff3f2bce7c02d90ca6.tar.gz
opensim-SC_OLD-4c6b7234de93fb34567614ff3f2bce7c02d90ca6.tar.bz2
opensim-SC_OLD-4c6b7234de93fb34567614ff3f2bce7c02d90ca6.tar.xz
We need to return a zero-length byte array from the Handle() routine.
-rw-r--r--OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs
index 1ca4add..afb836d 100644
--- a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs
+++ b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs
@@ -191,7 +191,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim
191 httpResponse.StatusCode = (int) HttpStatusCode.BadRequest; 191 httpResponse.StatusCode = (int) HttpStatusCode.BadRequest;
192 } 192 }
193 193
194 return null; 194 return new byte[] {};
195 } 195 }
196 } 196 }
197 } 197 }