1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:58:13 +00:00

Deflate: Fix deadly typo.

This commit is contained in:
asynts 2020-09-04 14:30:53 +02:00 committed by Andreas Kling
parent b9a6c07bb7
commit e2e2e782d4
2 changed files with 2 additions and 2 deletions

View file

@ -97,7 +97,6 @@ size_t GzipDecompressor::read(Bytes bytes)
if (m_input_stream.eof())
return 0;
// FIXME: This fails with the new changes?
BlockHeader header;
m_input_stream >> Bytes { &header, sizeof(header) };