matomo-org / component-decompress

Decompress files
GNU Lesser General Public License v3.0
12 stars 12 forks source link

Ensure that failing fread won't cause a hanging process #25

Closed sgiehl closed 5 days ago

sgiehl commented 1 week ago

Description:

It may happen that for a corrupted file fread may return false, while the file end has not yet been reached.

This PR adds a better handling for that case, so extracting won't get stuck.

fixes #24