]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Bugfix: Seeking to the end of the file is legal, only reading from this position...
authorJeremias Maerki <jeremias@apache.org>
Tue, 16 Jan 2007 21:06:42 +0000 (21:06 +0000)
committerJeremias Maerki <jeremias@apache.org>
Tue, 16 Jan 2007 21:06:42 +0000 (21:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@496860 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fonts/truetype/FontFileReader.java

index 42049eaac2f1990ed507bb92edf3b13a466d22e0..18ac7ad0f1991afa00780ecea07b3975b571ff67 100644 (file)
@@ -82,7 +82,7 @@ public class FontFileReader {
      * @throws IOException In case of an I/O problem
      */
     public void seekSet(long offset) throws IOException {
-        if (offset >= fsize || offset < 0) {
+        if (offset > fsize || offset < 0) {
             throw new java.io.EOFException("Reached EOF, file size=" + fsize
                                            + " offset=" + offset);
         }