Skip to content

Commit 65ba670

Browse files
committed
Update for the latest version of eXist
1 parent ac9efb1 commit 65ba670

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/expath/exist/crypto/digitalSignature/GenerateSignatureFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public Sequence eval(final Sequence[] args, final Sequence contextSequence) thro
129129
NodeValue inputNode = (NodeValue) args[0].itemAt(0);
130130
Document inputDOMDoc;
131131

132-
try (InputStream inputNodeStream = new NodeInputStream(serializer, inputNode)) {
132+
try (InputStream inputNodeStream = new NodeInputStream(context.getBroker().getBrokerPool(), serializer, inputNode)) {
133133
inputDOMDoc = inputStreamToDocument(inputNodeStream);
134134
} catch (IOException e) {
135135
throw new EXpathCryptoException(this, e);

0 commit comments

Comments
 (0)