]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Bugfix for unescaped name characters which can cause trouble with PDF parsers.
authorJeremias Maerki <jeremias@apache.org>
Mon, 11 Oct 2010 12:41:37 +0000 (12:41 +0000)
committerJeremias Maerki <jeremias@apache.org>
Mon, 11 Oct 2010 12:41:37 +0000 (12:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1021325 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/pdf/PDFName.java

index 8214cda7694ef19f8fc76405073295c7c692e50f..419907429255b2083a90a470d085fba31bddf68a 100644 (file)
@@ -41,6 +41,7 @@ public class PDFName extends PDFObject {
         this.name = escapeName(name);
     }
 
+    private static final String ESCAPED_NAME_CHARS = "/()<>[]";
 
     /**
      * Escapes a PDF name. It adds the leading slash and escapes characters as necessary.
@@ -56,7 +57,8 @@ public class PDFName extends PDFObject {
         }
         for (int i = (skipFirst ? 1 : 0), c = name.length(); i < c; i++) {
             char ch = name.charAt(i);
-            if (ch < 33 || ch > 126 || ch == 0x2F) {
+
+            if (ch < 33 || ch > 126 || ESCAPED_NAME_CHARS.indexOf(ch) >= 0) {
                 sb.append('#');
                 toHex(ch, sb);
             } else {