version 1.109, 2003/04/10 23:29:29
|
version 1.110, 2003/04/12 03:12:40
|
Line 1
|
Line 1
|
/* filter.c - routines for parsing and dealing with filters */ |
/* filter.c - routines for parsing and dealing with filters */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/filter.c,v 1.108 2003/04/10 04:21:53 hyc Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/filter.c,v 1.109 2003/04/10 23:29:29 hyc Exp $ */ |
/* |
/* |
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. |
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. |
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file |
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file |
Line 602 filter_free( Filter *f )
|
Line 602 filter_free( Filter *f )
|
{ |
{ |
Operation op; |
Operation op; |
|
|
op.o_tmpmemctx = NULL; |
op.o_tmpmemctx = sl_context( f ); |
op.o_tmpmfuncs = &ch_mfuncs; |
op.o_tmpmfuncs = &sl_mfuncs; |
filter_free_x( &op, f ); |
filter_free_x( &op, f ); |
} |
} |
|
|