mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
ITS#7439 Do not free parts of original filter
This commit is contained in:
parent
a99e435200
commit
58dfef012c
1 changed files with 2 additions and 2 deletions
|
|
@ -517,7 +517,7 @@ rwm_int_filter_map_rewrite(
|
|||
struct berval *fstr )
|
||||
{
|
||||
int i;
|
||||
Filter *p;
|
||||
Filter *p, ftmp;
|
||||
AttributeDescription *ad;
|
||||
struct berval atmp,
|
||||
vtmp,
|
||||
|
|
@ -769,7 +769,7 @@ rwm_int_filter_map_rewrite(
|
|||
|
||||
case -1:
|
||||
computed:;
|
||||
filter_free_x( op, f, 0 );
|
||||
f = &ftmp;
|
||||
f->f_choice = SLAPD_FILTER_COMPUTED;
|
||||
f->f_result = SLAPD_COMPARE_UNDEFINED;
|
||||
/* fallthru */
|
||||
|
|
|
|||
Loading…
Reference in a new issue