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
Notes: sideshowbarker 2024-07-19 02:54:11 +09:00

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) {