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
9dab474f
Commit
9dab474f
authored
Dec 28, 2001
by
Pierangelo Masarati
Browse files
fix realloc bug
parent
cd8eb327
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/dn.c
View file @
9dab474f
...
...
@@ -874,6 +874,11 @@ rdn_attrs( const char * rdn, char ***types, char ***values)
assert
(
rdn
);
assert
(
values
);
if
(
types
)
{
*
types
=
NULL
;
}
*
values
=
NULL
;
rc
=
ldap_str2rdn
(
rdn
,
&
tmpRDN
,
&
p
,
LDAP_DN_FORMAT_LDAP
);
if
(
rc
!=
LDAP_SUCCESS
)
{
return
rc
;
...
...
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