File: 0002-disable-external-method-invocation.patch

package info (click to toggle)
saxonb 9.1.0.8%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,308 kB
  • sloc: java: 128,210; xml: 1,250; makefile: 20; sh: 13
file content (22 lines) | stat: -rw-r--r-- 954 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Date: Mon, 29 Aug 2011 11:21:08 +0200
Subject: [PATCH] disable external method invocation

---
 bj/net/sf/saxon/Configuration.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/bj/net/sf/saxon/Configuration.java b/bj/net/sf/saxon/Configuration.java
index 4ecb53a..1ee5c5d 100644
--- a/bj/net/sf/saxon/Configuration.java
+++ b/bj/net/sf/saxon/Configuration.java
@@ -130,7 +130,7 @@ public class Configuration implements Serializable, SourceResolver {
     private transient OutputURIResolver outputURIResolver;
     private boolean timing = false;
     private boolean versionWarning = false;
-    private boolean allowExternalFunctions = true;
+    private boolean allowExternalFunctions = false;
     private boolean traceExternalFunctions = false;
     private boolean validation = false;
     private boolean allNodesUntyped = false;
--