mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Shooting in the dark for solutions to the appearance problem
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user