mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-01-09 11:48:00 +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 int data = super.read();
|
||||||
final boolean endOfStream = data == -1;
|
final boolean endOfStream = data == -1;
|
||||||
if (endOfStream) {
|
if (endOfStream) {
|
||||||
|
parseAndCombineSignatures();
|
||||||
verifyOnePassSignatures();
|
verifyOnePassSignatures();
|
||||||
verifyDetachedSignatures();
|
verifyDetachedSignatures();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue