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
580f045a
Commit
580f045a
authored
Nov 24, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6398 fix onetime leak
parent
48ca3957
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
580f045a
...
...
@@ -21,6 +21,7 @@ OpenLDAP 2.4.20 Engineering
Fixed slapd inclusion of ac/unistd.h (ITS#6342)
Fixed slapd invalid dn log message (ITS#6309)
Fixed slapd lockup on shutdown (ITS#6372)
Fixed slapd onetime leak (ITS#6398)
Fixed slapd RID range to be decimal only (ITS#6394)
Fixed slapd sl_free to better reclaim memory (ITS#6380)
Fixed slapd syncrepl deletes in MirrorMode (ITS#6368)
...
...
servers/slapd/slapcommon.c
View file @
580f045a
...
...
@@ -763,6 +763,11 @@ startup:;
conffile
=
NULL
;
}
if
(
confdir
!=
NULL
)
{
ch_free
(
confdir
);
confdir
=
NULL
;
}
if
(
ldiffile
!=
NULL
)
{
ch_free
(
ldiffile
);
ldiffile
=
NULL
;
...
...
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