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
Joe Martin
OpenLDAP
Commits
ace3c076
Commit
ace3c076
authored
Jul 08, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5558
parent
52691310
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
ace3c076
...
...
@@ -2,7 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.11 Engineering
Fixed slapd sets memory leak (ITS#5557)
Fixed slapd-sock buffer count (ITS#5558)
Fixed slapd-sock
, back-shell
buffer count (ITS#5558)
Added slapo-nssov contrib module
Fixed slapo-ppolicy DNs with whitespaces (ITS#5552)
Fixed slapo-syncprov ACL evaluation (ITS#5548)
...
...
servers/slapd/back-shell/result.c
View file @
ace3c076
...
...
@@ -80,7 +80,7 @@ read_and_send_results(
}
len
=
strlen
(
line
);
while
(
bp
+
len
-
buf
>
bsize
)
{
while
(
bp
+
len
+
1
-
buf
>
bsize
)
{
size_t
offset
=
bp
-
buf
;
bsize
+=
BUFSIZ
;
buf
=
(
char
*
)
ch_realloc
(
buf
,
bsize
);
...
...
servers/slapd/back-sock/result.c
View file @
ace3c076
...
...
@@ -77,7 +77,7 @@ sock_read_and_send_results(
}
len
=
strlen
(
line
);
while
(
bp
+
len
-
buf
>
bsize
)
{
while
(
bp
+
len
+
1
-
buf
>
bsize
)
{
size_t
offset
=
bp
-
buf
;
bsize
+=
BUFSIZ
;
buf
=
(
char
*
)
ch_realloc
(
buf
,
bsize
);
...
...
Write
Preview
Markdown
is supported
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