Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
cacd5f42
Commit
cacd5f42
authored
Sep 20, 2006
by
Quanah Gibson-Mount
Browse files
ITS
#2612
parent
29b0cc33
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
cacd5f42
...
...
@@ -5,7 +5,8 @@ OpenLDAP 2.3.28 Engineering
Added ldapsearch bad filter pattern check (ITS#4647)
Fixed slapd-monitor locking with scope "subordinate" (ITS#4668)
Fixed slapd global access controls initialization (ITS#4654)
Fixed slapd setting c_sasl_bindop only on SASL binds
Fixed slapd setting c_sasl_bindop only on SASL binds
Fixed slapd-perl deletes (ITS#2612)
OpenLDAP 2.3.27 Release
Fixed libldap dangling pointer issue (previous fix was broken) (ITS#4405)
...
...
servers/slapd/back-perl/modify.c
View file @
cacd5f42
...
...
@@ -63,6 +63,11 @@ perl_back_modify(
{
XPUSHs
(
sv_2mortal
(
newSVpv
(
mods
->
sm_values
[
i
].
bv_val
,
0
)));
}
/* Fix delete attrib without value. */
if
(
i
==
0
)
{
XPUSHs
(
sv_newmortal
());
}
}
PUTBACK
;
...
...
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