From 4845ef2370d052c821724734b3438f7556b6c823 Mon Sep 17 00:00:00 2001 From: Howard Chu <hyc@openldap.org> Date: Wed, 10 Jan 2007 10:22:18 +0000 Subject: [PATCH] ITS#4648 ffrom HEAD --- libraries/libldap/filter.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libraries/libldap/filter.c b/libraries/libldap/filter.c index 261740c093..fbfe90ced6 100644 --- a/libraries/libldap/filter.c +++ b/libraries/libldap/filter.c @@ -425,6 +425,10 @@ ldap_pvt_put_filter( BerElement *ber, const char *str_in ) parens--; break; + case '(': + rc = -1; + goto done; + default: Debug( LDAP_DEBUG_TRACE, "put_filter: simple\n", 0, 0, 0 ); @@ -497,9 +501,11 @@ ldap_pvt_put_filter( BerElement *ber, const char *str_in ) str = next; break; } + if ( !parens ) + break; } - rc = parens ? -1 : 0; + rc = ( parens || *str ) ? -1 : 0; done: LDAP_FREE( freeme ); -- GitLab