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
b4586b2f
Commit
b4586b2f
authored
Apr 05, 2006
by
Hallvard Furuseth
Browse files
Fix for the previous ITS#4323 fix: for(expr;...) -> for(i=expr;...)
parent
c76eb501
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/backglue.c
View file @
b4586b2f
...
...
@@ -441,7 +441,7 @@ end_of_loop:;
if
(
gs
.
refs
)
ber_bvarray_free
(
gs
.
refs
);
if
(
gs
.
ctrls
)
{
for
(
gs
.
nctrls
-
1
;
i
>=
0
;
i
--
)
{
for
(
i
=
gs
.
nctrls
;
--
i
>=
0
;
)
{
if
(
!
BER_BVISNULL
(
&
gs
.
ctrls
[
i
]
->
ldctl_value
))
free
(
gs
.
ctrls
[
i
]
->
ldctl_value
.
bv_val
);
free
(
gs
.
ctrls
[
i
]);
...
...
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