Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
eabc108a
Commit
eabc108a
authored
Oct 31, 2009
by
Quanah Gibson-Mount
Browse files
ITS
#6348
parent
20953694
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
eabc108a
OpenLDAP 2.4 Change Log
OpenLDAP 2.4.20 Engineering
Fixed liblber inverted LBER_USE_DER test (ITS#6348)
Fixed liblber to return failure on certain failures (ITS#6344)
Fixed libldap uninitialized return value (ITS#6355)
Fixed liblutil constant (ITS#5909)
...
...
libraries/liblber/encode.c
View file @
eabc108a
...
...
@@ -455,7 +455,7 @@ ber_put_seqorset( BerElement *ber )
/* Store length, and close gap of leftover reserved length octets */
len
=
xlen
-
SOS_LENLEN
;
if
(
ber
->
ber_options
&
LBER_USE_DER
)
{
if
(
!
(
ber
->
ber_options
&
LBER_USE_DER
)
)
{
int
i
;
lenptr
[
0
]
=
SOS_LENLEN
-
1
+
0x80
;
/* length(length)-1 */
for
(
i
=
SOS_LENLEN
;
--
i
>
0
;
len
>>=
8
)
{
...
...
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