Skip to content
Snippets Groups Projects
Commit f1784a54 authored by Howard Chu's avatar Howard Chu
Browse files

ITS#4648, alternate fix

parent 3cdba151
Branches
Tags
No related merge requests found
......@@ -422,6 +422,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 );
......@@ -494,9 +498,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 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment