From 24d3d5dac40562f22a43eb9934c90165ace92a35 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Mon, 25 Feb 2013 19:06:37 +0000 Subject: AnvilStats: Added ChunkExtract mode of operation, splitting Anvil files into individual chunks. Both original zlibbed chunks and re-gzipped chunks are output. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1223 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/OSSupport/GZipFile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/OSSupport/GZipFile.cpp') diff --git a/source/OSSupport/GZipFile.cpp b/source/OSSupport/GZipFile.cpp index dbdef3a8b..c57de5198 100644 --- a/source/OSSupport/GZipFile.cpp +++ b/source/OSSupport/GZipFile.cpp @@ -85,7 +85,7 @@ int cGZipFile::ReadRestOfFile(AString & a_Contents) -bool cGZipFile::Write(const AString & a_Contents) +bool cGZipFile::Write(const char * a_Contents, int a_Size) { if (m_File == NULL) { @@ -99,7 +99,7 @@ bool cGZipFile::Write(const AString & a_Contents) return false; } - return (gzwrite(m_File, a_Contents.data(), a_Contents.size()) != 0); + return (gzwrite(m_File, a_Contents, a_Size) != 0); } -- cgit v1.2.3