1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 03:08:13 +00:00

LibCompress: Replace ASSERT_NOT_REACHED with set_fatal_error.

We shouldn't assert that the input file is valid.
This commit is contained in:
asynts 2020-09-03 17:48:44 +02:00 committed by Andreas Kling
parent 40e6a3dcc3
commit f9ba037674

View file

@ -233,7 +233,8 @@ size_t DeflateDecompressor::read(Bytes bytes)
return read(bytes);
}
ASSERT_NOT_REACHED();
set_fatal_error();
return 0;
}
if (m_state == State::ReadingCompressedBlock) {