mirror of https://github.com/apache/lucene.git
LUCENE-6932: fix SimpleFSIndexInput to throw EOFException if you seek beyond end of file
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1726266 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
07b5a6f64b
commit
e19f4b5934
|
@ -190,6 +190,10 @@ public class SimpleFSDirectory extends FSDirectory {
|
|||
}
|
||||
|
||||
@Override
|
||||
protected void seekInternal(long pos) throws IOException {}
|
||||
protected void seekInternal(long pos) throws IOException {
|
||||
if (pos > length()) {
|
||||
throw new EOFException("read past EOF: pos=" + pos + " vs length=" + length() + ": " + this);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue