Leaving the MemoryStreams unclosed.
parent
366bfe17ae
commit
f21f3727df
|
@ -108,7 +108,8 @@ namespace OpenSim.Framework.Servers.HttpServer
|
|||
}
|
||||
finally
|
||||
{
|
||||
buffer.Close();
|
||||
// Let's not close this
|
||||
//buffer.Close();
|
||||
respStream.Close();
|
||||
response.Close();
|
||||
}
|
||||
|
|
|
@ -79,7 +79,8 @@ namespace OpenSim.Framework.Servers.HttpServer
|
|||
{
|
||||
if (requestStream != null)
|
||||
requestStream.Close();
|
||||
buffer.Close();
|
||||
// Let's not close this
|
||||
//buffer.Close();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue