diff options
author | Mike Mazur | 2009-02-16 02:28:24 +0000 |
---|---|---|
committer | Mike Mazur | 2009-02-16 02:28:24 +0000 |
commit | 4c6b7234de93fb34567614ff3f2bce7c02d90ca6 (patch) | |
tree | 9cbd388d07e78abfdf9909d160caf4a5ddd2b130 /OpenSim | |
parent | - clean up using references as well as References in prebuild.xml (diff) | |
download | opensim-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.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs | 2 |
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 | } |