JDK-6328469 : encoding bug (6317399): com/sun/jndi/ldap/Filter.java
  • Type: Bug
  • Component: core-libs
  • Sub-Component: javax.naming
  • Affected Version: 5.0u4
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • OS: generic
  • CPU: generic
  • Submitted: 2005-09-24
  • Updated: 2010-04-03
  • Resolved: 2007-04-17
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 7
7 b12Fixed
Related Reports
Relates :  
Relates :  
Description
Please first read Comments section here and in 6317399.

In com/sun/jndi/ldap/Filter.java (5.0u4):

// wrong line 433
	    dprint(", type: ", Integer.toString(filterType, 16).getBytes());
// correction:
	    dprint(", type: ", Integer.toString(filterType, 16).getBytes("ISO-8859-1"));

Comments
EVALUATION The suggested fix lookd appropriate to me.
02-02-2006

SUGGESTED FIX See Description.
24-09-2005