1
This commit is contained in:
@@ -104,7 +104,7 @@ namespace BITKit
|
||||
System.IO.MemoryStream ms = new System.IO.MemoryStream(zippedData);
|
||||
System.IO.Compression.GZipStream compressedzipStream = new System.IO.Compression.GZipStream(ms, System.IO.Compression.CompressionMode.Decompress);
|
||||
System.IO.MemoryStream outBuffer = new System.IO.MemoryStream();
|
||||
byte[] block = new byte[1024];
|
||||
byte[] block = new byte[1024*16];
|
||||
while (true)
|
||||
{
|
||||
int bytesRead = compressedzipStream.Read(block, 0, block.Length);
|
||||
|
Reference in New Issue
Block a user