aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/SynchronousRestFormsRequester.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer/SynchronousRestFormsRequester.cs')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/SynchronousRestFormsRequester.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/SynchronousRestFormsRequester.cs b/OpenSim/Framework/Servers/HttpServer/SynchronousRestFormsRequester.cs
index b2c1c54..f955df7 100644
--- a/OpenSim/Framework/Servers/HttpServer/SynchronousRestFormsRequester.cs
+++ b/OpenSim/Framework/Servers/HttpServer/SynchronousRestFormsRequester.cs
@@ -104,7 +104,7 @@ namespace OpenSim.Framework.Servers.HttpServer
104 { 104 {
105 using (WebResponse resp = request.GetResponse()) 105 using (WebResponse resp = request.GetResponse())
106 { 106 {
107 if (resp.ContentLength > 0) 107 if (resp.ContentLength != 0)
108 { 108 {
109 Stream respStream = null; 109 Stream respStream = null;
110 try 110 try