aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMW2009-06-18 20:01:37 +0000
committerMW2009-06-18 20:01:37 +0000
commit417e3ee1d7d8d9d94711c6e8bb2ce1929c7d041f (patch)
tree8a209666754ce402bbaee7031e0dd6e15442ebed /OpenSim/Framework
parent* Corrected CAPS namespaces (diff)
downloadopensim-SC_OLD-417e3ee1d7d8d9d94711c6e8bb2ce1929c7d041f.zip
opensim-SC_OLD-417e3ee1d7d8d9d94711c6e8bb2ce1929c7d041f.tar.gz
opensim-SC_OLD-417e3ee1d7d8d9d94711c6e8bb2ce1929c7d041f.tar.bz2
opensim-SC_OLD-417e3ee1d7d8d9d94711c6e8bb2ce1929c7d041f.tar.xz
Applied patch from Mantis #3736 , which should stop the userserver crashing when a SL viewer version 1.23 logs in. Thanks StrawberryFride
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index bbc7857..ef61200 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -587,7 +587,8 @@ namespace OpenSim.Framework.Servers.HttpServer
587 string requestBody = reader.ReadToEnd(); 587 string requestBody = reader.ReadToEnd();
588 reader.Close(); 588 reader.Close();
589 requestStream.Close(); 589 requestStream.Close();
590 590 //m_log.Debug(requestBody);
591 requestBody = requestBody.Replace("<base64></base64>", "");
591 string responseString = String.Empty; 592 string responseString = String.Empty;
592 XmlRpcRequest xmlRprcRequest = null; 593 XmlRpcRequest xmlRprcRequest = null;
593 594