[CABMAN] Replace some dynamically allocated strings with std::string

CORE-17231
This commit is contained in:
Mark Jansen 2020-08-30 15:31:04 +02:00
parent 58092fb4da
commit 7394d12f7e
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
9 changed files with 204 additions and 275 deletions

View file

@ -26,12 +26,12 @@ public:
virtual ULONG Compress(void* OutputBuffer,
void* InputBuffer,
ULONG InputLength,
PULONG OutputLength);
PULONG OutputLength) override;
/* Uncompresses a data block */
virtual ULONG Uncompress(void* OutputBuffer,
void* InputBuffer,
ULONG InputLength,
PULONG OutputLength);
PULONG OutputLength) override;
private:
int Status;
z_stream ZStream; /* Zlib stream */