Closed andrewko closed 1 year ago
Hi Clemens, just to make sure. This is an issue coming from ÖBB side :) Thanks for looking into it. Daniel
the recommended change is added to the master.
Would you need a release of the binary imediately? Otherwise i would wait for the SSB branch to be completed.
No, we don't need the binary immediately.
released in version 1.4.0
Hi,
we have a problem with validating a 'Steiermark Ticket'. The example ticket is in the following ZIP file: Steiermark Ticket.zip
The inflate loop in StaticFrame.java stucks in an endless loop.
inflater.finished() never returns true
According to an very old bug it is also recommended to check the return value of inflater.inflate(). Recommended solution would look like:
while (!inflater.finished()) {
int count = inflater.inflate(inflatedDataBuffer,0,2000);
if (inflater.needsDictionary() || count == 0) {
break;
}
Thanks in advance,
Andrej