diff options
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLXAssetData.cs | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/OpenSim/Data/MySQL/MySQLXAssetData.cs b/OpenSim/Data/MySQL/MySQLXAssetData.cs index 2ef7f8f..23f6837 100644 --- a/OpenSim/Data/MySQL/MySQLXAssetData.cs +++ b/OpenSim/Data/MySQL/MySQLXAssetData.cs | |||
@@ -163,13 +163,15 @@ namespace OpenSim.Data.MySQL | |||
163 | 163 | ||
164 | if (m_enableCompression) | 164 | if (m_enableCompression) |
165 | { | 165 | { |
166 | using (GZipStream decompressionStream = new GZipStream(new MemoryStream(asset.Data), CompressionMode.Decompress)) | 166 | using(GZipStream decompressionStream = new GZipStream(new MemoryStream(asset.Data), |
167 | CompressionMode.Decompress)) | ||
167 | { | 168 | { |
168 | MemoryStream outputStream = new MemoryStream(); | 169 | using(MemoryStream outputStream = new MemoryStream()) |
169 | WebUtil.CopyStream(decompressionStream, outputStream, int.MaxValue); | 170 | { |
170 | // int compressedLength = asset.Data.Length; | 171 | WebUtil.CopyStream(decompressionStream, outputStream, int.MaxValue); |
171 | asset.Data = outputStream.ToArray(); | 172 | // int compressedLength = asset.Data.Length; |
172 | 173 | asset.Data = outputStream.ToArray(); | |
174 | } | ||
173 | // m_log.DebugFormat( | 175 | // m_log.DebugFormat( |
174 | // "[XASSET DB]: Decompressed {0} {1} to {2} bytes from {3}", | 176 | // "[XASSET DB]: Decompressed {0} {1} to {2} bytes from {3}", |
175 | // asset.ID, asset.Name, asset.Data.Length, compressedLength); | 177 | // asset.ID, asset.Name, asset.Data.Length, compressedLength); |