[ 
https://issues.apache.org/jira/browse/LUCENE-3295?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Simon Willnauer updated LUCENE-3295:
------------------------------------

    Attachment: LUCENE-3295.patch

here is a simple patch and a test that at least exercise the code.

> 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
>            Assignee: Simon Willnauer
>            Priority: Minor
>             Fix For: 3.4, 4.0
>
>         Attachments: LUCENE-3295.patch
>
>
> 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]

Reply via email to