Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
3dececd4
Commit
3dececd4
authored
Sep 30, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5720
parent
9b9ddbaa
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
3dececd4
OpenLDAP 2.4 Change Log
OpenLDAP 2.4.12 Engineering
Fixed libldap ldap_utf8_strchar arguments (ITS#5720)
Fixed libldap TLS_CRLFILE (ITS#5677)
Fixed liblutil executables on Windows (ITS#5604)
Fixed liblutil microsecond overflows on Windows (ITS#5668)
...
...
libraries/libldap/charray.c
View file @
3dececd4
...
...
@@ -191,10 +191,10 @@ ldap_str2charray( const char *str_in, const char *brkstr )
}
i
=
1
;
for
(
s
=
str
;
*
s
;
s
++
)
{
if
(
ldap_utf8_strchr
(
brkstr
,
s
)
!=
NULL
)
{
i
++
;
}
for
(
s
=
str
;
*
s
;
LDAP_UTF8_INCR
(
s
)
)
{
s
=
ldap_utf8_strchr
(
s
,
brkstr
);
if
(
!
s
)
break
;
i
++
;
}
res
=
(
char
**
)
LDAP_MALLOC
(
(
i
+
1
)
*
sizeof
(
char
*
)
);
...
...
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