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