NullPointerException in ClientBinaryValue
-----------------------------------------
Key: DIRSERVER-1135
URL: https://issues.apache.org/jira/browse/DIRSERVER-1135
Project: Directory ApacheDS
Issue Type: Bug
Components: core
Reporter: Kiran Ayyagari
The below code in ClientBinaryValue.java will trow a NullPointerException if
the value of variable 'valid' is null
public final boolean isValid() throws NamingException
{
if ( valid != null )
{
return valid;
}
return valid;
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.