mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-17 18:02:05 +01:00
Add missing parseAndCombineSignatures call
For some reason this was missing from the single-byte read() method of the SignatureInputStream, causing issues if draining the stream byte by byte
This commit is contained in:
parent
9106d98449
commit
0bafc410a0
1 changed files with 1 additions and 0 deletions
|
@ -67,6 +67,7 @@ public abstract class SignatureInputStream extends FilterInputStream {
|
|||
final int data = super.read();
|
||||
final boolean endOfStream = data == -1;
|
||||
if (endOfStream) {
|
||||
parseAndCombineSignatures();
|
||||
verifyOnePassSignatures();
|
||||
verifyDetachedSignatures();
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue