RamFileRandomAccessContent.seek() allows seeking before file start.
-------------------------------------------------------------------

                 Key: VFS-356
                 URL: https://issues.apache.org/jira/browse/VFS-356
             Project: Commons VFS
          Issue Type: Bug
    Affects Versions: 1.0
         Environment: None.
            Reporter: Miroslav Pokorny


MRAC simply calls RFRAC with no attempt to clip pos which results in 
filepoitner being set to negative values which are wrong.

MonitorRandomAccessContent {
    public void seek(long pos) throws IOException
    {
        content.seek(pos);
    }
}

RamFileRandomAccessContent
    public void seek(long pos) throws IOException {
        this.filePointer = (int) pos;
    }

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to