Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
2d88c1b8
Commit
2d88c1b8
authored
20 years ago
by
Pierangelo Masarati
Browse files
Options
Downloads
Patches
Plain Diff
comment about helper requirements
parent
02a85a1c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/back-sql/api.c
+32
-1
32 additions, 1 deletion
servers/slapd/back-sql/api.c
with
32 additions
and
1 deletion
servers/slapd/back-sql/api.c
+
32
−
1
View file @
2d88c1b8
...
...
@@ -94,14 +94,30 @@ backsql_api_dn2odbc( Operation *op, SlapReply *rs, struct berval *dn )
for
(
;
ba
;
ba
=
ba
->
ba_next
)
{
if
(
ba
->
ba_dn2odbc
)
{
/*
* The dn2odbc() helper is supposed to rewrite
* the contents of bv, freeing the original value
* with ch_free() if required and replacing it
* with a newly allocated one using ch_malloc()
* or companion functions.
*
* NOTE: it is supposed to __always__ free
* the value of bv in case of error, and reset
* it with BER_BVZERO() .
*/
rc
=
(
*
ba
->
ba_dn2odbc
)(
op
,
rs
,
&
bv
);
if
(
rc
)
{
/* in case of error, dn2odbc() must cleanup */
assert
(
BER_BVISNULL
(
&
bv
)
);
return
rc
;
}
}
}
assert
(
!
BER_BVISNULL
(
&
bv
)
);
*
dn
=
bv
;
return
0
;
...
...
@@ -126,13 +142,28 @@ backsql_api_odbc2dn( Operation *op, SlapReply *rs, struct berval *dn )
for
(
;
ba
;
ba
=
ba
->
ba_next
)
{
if
(
ba
->
ba_dn2odbc
)
{
rc
=
(
*
ba
->
ba_odbc2dn
)(
op
,
rs
,
&
bv
);
/*
* The odbc2dn() helper is supposed to rewrite
* the contents of bv, freeing the original value
* with ch_free() if required and replacing it
* with a newly allocated one using ch_malloc()
* or companion functions.
*
* NOTE: it is supposed to __always__ free
* the value of bv in case of error, and reset
* it with BER_BVZERO() .
*/
if
(
rc
)
{
/* in case of error, odbc2dn() must cleanup */
assert
(
BER_BVISNULL
(
&
bv
)
);
return
rc
;
}
}
}
assert
(
!
BER_BVISNULL
(
&
bv
)
);
*
dn
=
bv
;
return
0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment