Pārlūkot izejas kodu

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 pirms 17 gadiem
vecāks
revīzija
07adcf603f

+ 1
- 1
src/java/org/apache/fop/fonts/truetype/FontFileReader.java Parādīt failu

@@ -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);
}

Notiek ielāde…
Atcelt
Saglabāt