Another incomplete fix for the NPE bugs in ParallelReader.java
--------------------------------------------------------------

                 Key: LUCENE-3781
                 URL: https://issues.apache.org/jira/browse/LUCENE-3781
             Project: Lucene - Java
          Issue Type: Bug
          Components: core/index
    Affects Versions: 3.0
            Reporter: Guangtai Liang


The fix revision 407851  was aimed to remove an NPE bug on the value  of  
"termDocs" in the methods "next", "read", "skipTo", "close" of the file 
"/lucene/java/trunk/src/java/org/apache/lucene/index/ParallelReader.java
" , but it is incomplete. 
Since the value  "termDocs" could be null during the runtime execution, its 
value should also be null-checked before being dereferenced in other methods. 

The buggy code locations the same fix needs to be applied at are as bellows: 
 
Line 574, 575 of the methods "doc()" , and "freq": 

 public int doc() { return termDocs.doc(); }
 public int freq() { return termDocs.freq(); }


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to