diff --git a/src/main.c b/src/main.c index 2948420..bbddada 100644 --- a/src/main.c +++ b/src/main.c @@ -52,7 +52,6 @@ int main(int argc, unsigned char *argv[]) { fprintf(stderr, "Could not allocate %lu bytes for compressed buffer.\n", BUFFER_SIZE); exit(1); } - //memset(compressedChunk, (uint8_t)0, BUFFER_SIZE); uint8_t* uncompressedChunk = malloc(BUFFER_SIZE); if (uncompressedChunk == NULL) { @@ -98,7 +97,6 @@ int main(int argc, unsigned char *argv[]) { while (remainingBytes > 0 || !hasReachedEnd) { if (needToRead) { chunkSize = min(BUFFER_SIZE - uncompressedPosition, remainingBytes); - //memset(compressedChunk, 0, chunkSize); getBytes(compressedChunk, chunkSize); remainingBytes -= chunkSize;