Description
The following bug is in JdbmPartition
public final String getEntryUpdn( String dn ) throws NamingException
{
return getEntryupdn( dn );
}
This will cause a stack overflow. The reason I didn't make the bug more serious is that Emmanuel let me know this method isn't currently being used. However, should someone attempt to use it the results would not be good. I believe the code should be:
public final String getEntryUpdn( String dn ) throws NamingException
{
return store.getEntryupdn( dn );
}