1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibCompress: Move loading XZ stream headers into its own function

This commit is contained in:
Tim Schumacher 2023-04-05 16:25:24 +02:00 committed by Brian Gianforcaro
parent 95e35b7f5e
commit 0e11e7012d
2 changed files with 54 additions and 43 deletions

View file

@ -111,6 +111,8 @@ public:
private:
XzDecompressor(NonnullOwnPtr<CountingStream>);
ErrorOr<bool> load_next_stream();
NonnullOwnPtr<CountingStream> m_stream;
Optional<XzStreamFlags> m_stream_flags;
bool m_found_first_stream_header { false };