Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
cf9880e3
Commit
cf9880e3
authored
Jul 27, 2000
by
Kurt Zeilenga
Browse files
Plug rdwr lock leak
parent
8e681dbb
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
cf9880e3
...
...
@@ -8,6 +8,7 @@ Changes included in OpenLDAP 1.2.12 Engineering
Fixed libldap/add mod_bvalues typo
Fixed ldappasswd crypt(3) crash (ITD#598)
Fixed slapd/config.c MAXARGS boundary condition bug
Fixed cn=monitor/config rdwr lock leak
Build Environment
Remove extra Digital UNIX symbol (ITS#590)
Ignore make clean rm failure
...
...
servers/slapd/configinfo.c
View file @
cf9880e3
...
...
@@ -42,8 +42,6 @@ config_info(
vals
[
1
]
=
NULL
;
e
=
(
Entry
*
)
ch_calloc
(
1
,
sizeof
(
Entry
)
);
/* initialize reader/writer lock */
entry_rdwr_init
(
e
);
e
->
e_attrs
=
NULL
;
e
->
e_dn
=
ch_strdup
(
SLAPD_CONFIG_DN
);
...
...
servers/slapd/monitor.c
View file @
cf9880e3
...
...
@@ -47,7 +47,6 @@ monitor_info( Connection *conn, Operation *op,
e
=
(
Entry
*
)
ch_calloc
(
1
,
sizeof
(
Entry
)
);
/* initialize reader/writer lock */
entry_rdwr_init
(
e
);
e
->
e_attrs
=
NULL
;
e
->
e_dn
=
ch_strdup
(
SLAPD_MONITOR_DN
);
e
->
e_ndn
=
dn_normalize_case
(
ch_strdup
(
SLAPD_MONITOR_DN
)
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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