Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
1c197bbe
Commit
1c197bbe
authored
Apr 25, 2022
by
Howard Chu
Browse files
Revert "ITS
#9828
Fix ldap_count_values_len pointer confusion"
This reverts commit
7e7fad5e
.
parent
6657caaa
Pipeline
#4274
passed with stage
in 48 minutes and 32 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
libraries/libldap/getvalues.c
View file @
1c197bbe
...
...
@@ -159,15 +159,7 @@ ldap_count_values( char **vals )
int
ldap_count_values_len
(
struct
berval
**
vals
)
{
int
i
;
if
(
vals
==
NULL
)
return
0
;
for
(
i
=
0
;
!
BER_BVISNULL
(
vals
[
i
]
);
i
++
)
;
/* NULL */
return
i
;
return
(
ldap_count_values
(
(
char
**
)
vals
)
);
}
void
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment