[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: Bug in JLDAP RfcFilter.java



Please report bugs using the Issue Tracking System.  This
list is for discussing potential bugs and discussing reported
bugs (via ITS forwarding).

Kurt

At 11:14 AM 5/8/2003, Wood, Will wrote:
>There's a bug in RfcFilter.java that prohibits an escaped search filter from
>being properly
>addressed.  This is in the latest CVS drop.
>
>in unescapeString, a variable temp is being declared and initialized for
>each escaped hex digit, therefore the high order bits are always being
>chucked.  Solution move the
>declaration outside of the for loop and re-initialize when the escape
>character is hit.
>
>
>463a464
>>       char temp = 0;
>477d477
><                     char temp = 0;  // get the value of the excaped
>sequence
>490a491
>>             temp = 0;                        // wipe out any old bits.