You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Pierre-Arnaud Marcelot (JIRA)" <ji...@apache.org> on 2006/08/31 10:12:24 UTC

[jira] Closed: (DIRSERVER-723) Possible double add of extensibleMatchFilter in filter tree

     [ http://issues.apache.org/jira/browse/DIRSERVER-723?page=all ]

Pierre-Arnaud Marcelot closed DIRSERVER-723.
--------------------------------------------


Great!

I'm closing the issue.

> Possible double add of extensibleMatchFilter in filter tree
> -----------------------------------------------------------
>
>                 Key: DIRSERVER-723
>                 URL: http://issues.apache.org/jira/browse/DIRSERVER-723
>             Project: Directory ApacheDS
>          Issue Type: Bug
>          Components: ldap
>            Reporter: Pierre-Arnaud Marcelot
>         Assigned To: Emmanuel Lecharny
>
> In internal class "GrammarAction("Init extensible match Filter" )" (line 97), I think that the extensibleMatchFilter may be added twice in the Filter tree.
> The following code add the Filter :
> ------------------
> // Get the parent, if any
>                     Filter currentFilter = searchRequest.getCurrentFilter();
>                     if ( currentFilter != null )
>                     {
>                         // Ok, we have a parent. The new Filter will be added to
>                         // this parent, then.
>                         ( ( ConnectorFilter ) currentFilter ).addFilter( extensibleMatchFilter );
>                         extensibleMatchFilter.setParent( currentFilter );
>                     }
>                     else
>                     {
>                         // No parent. This Filter will become the root.
>                         searchRequest.setFilter( extensibleMatchFilter );
>                         extensibleMatchFilter.setParent( searchRequest );
>                     }
> ------------------
> and then, the addCurrentFilter( extensibleMatchFilter ) method is called and does the same thing another time.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira