Browse Source

Bugfix: Seeking to the end of the file is legal, only reading from this position isn't. Fixes running TTFReader with K3.ttf.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@496860 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_94
Jeremias Maerki 17 years ago
parent
commit
07adcf603f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/java/org/apache/fop/fonts/truetype/FontFileReader.java

+ 1
- 1
src/java/org/apache/fop/fonts/truetype/FontFileReader.java View 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);
}

Loading…
Cancel
Save