BitVector never skips fully populated bytes when writing ClearedDgaps
---------------------------------------------------------------------
Key: LUCENE-3295
URL: https://issues.apache.org/jira/browse/LUCENE-3295
Project: Lucene - Java
Issue Type: Bug
Components: core/other
Affects Versions: 3.4, 4.0
Reporter: Simon Willnauer
Priority: Minor
Fix For: 3.4, 4.0
When writing cleared DGaps in BitVector we compare a byte against 0xFF (255)
yet the byte is casted into an int (-1) and the comparison will never succeed.
We should mask the byte with 0xFF before comparing or compare against -1
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]