You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 2, 2025. It is now read-only.
The available method in class LZ4FrameInputStream assumes the buffer field is not null. However, that field is set in the private readHeader method which may not have been executed yet. This results in a NullPointerException being thrown by the available method if it is called right after the LZ4FrameInputStream is created.
The
availablemethod in classLZ4FrameInputStreamassumes thebufferfield is notnull. However, that field is set in the privatereadHeadermethod which may not have been executed yet. This results in aNullPointerExceptionbeing thrown by theavailablemethod if it is called right after theLZ4FrameInputStreamis created.