mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 15:49:34 -05:00
Bug Fix : removing problematic counter increment
This commit is contained in:
parent
c60dca5c1e
commit
452fc403dd
1 changed files with 2 additions and 5 deletions
|
|
@ -95,11 +95,8 @@ get_comp_filter ( Operation* op, struct berval* bv, ComponentFilter** filt,
|
|||
static void
|
||||
eat_whsp( ComponentAssertionValue* cav )
|
||||
{
|
||||
int count = 0;
|
||||
for ( ; ; ) {
|
||||
if ( cav->cav_ptr[count++] == ' ' ) cav->cav_ptr++;
|
||||
else break;
|
||||
}
|
||||
while ( ( cav->cav_ptr <= cav->cav_end ) && ( *cav->cav_ptr == ' ' ) )
|
||||
cav->cav_ptr++;
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Reference in a new issue