diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-03-15 15:26:38 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-03-15 15:26:38 +1100 |
commit | 6208636d69b5fde1d01d9361748c565d35816e20 (patch) | |
tree | 9d6022a5463b099b899bf36184e57127b81dd70b /source/core/StarZSTDCompression.hpp | |
parent | 662b83ff92cc2316fb962ff1608359f6d705a5f0 (diff) |
Fixes
Diffstat (limited to 'source/core/StarZSTDCompression.hpp')
-rw-r--r-- | source/core/StarZSTDCompression.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/core/StarZSTDCompression.hpp b/source/core/StarZSTDCompression.hpp index 77719bf..9c296c1 100644 --- a/source/core/StarZSTDCompression.hpp +++ b/source/core/StarZSTDCompression.hpp @@ -19,6 +19,7 @@ public: private: ZSTD_CStream* m_cStream; + ByteArray m_output; }; inline ByteArray CompressionStream::compress(ByteArray const& in) { @@ -35,6 +36,7 @@ public: private: ZSTD_DStream* m_dStream; + ByteArray m_output; }; inline ByteArray DecompressionStream::decompress(ByteArray const& in) { |