Shooting in the dark for solutions to the appearance problem

This commit is contained in:
Mic Bowman
2010-12-20 14:15:44 -08:00
committed by Diva Canto
parent c082254b9d
commit a6a136bd90
2 changed files with 8 additions and 8 deletions

View File

@@ -53,8 +53,8 @@ namespace OpenSim.Framework.Servers.HttpServer
private static byte[] ReadFully(Stream stream)
{
byte[] buffer = new byte[32768];
using (MemoryStream ms = new MemoryStream())
byte[] buffer = new byte[1024];
using (MemoryStream ms = new MemoryStream(1024*256))
{
while (true)
{