Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Jaak Ristioja
OpenLDAP
Commits
2d5d4ecf
Commit
2d5d4ecf
authored
21 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
ITS#2480 uninit'd vars
parent
5ee92644
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
servers/slapd/back-bdb/delete.c
+2
-0
2 additions, 0 deletions
servers/slapd/back-bdb/delete.c
servers/slapd/back-bdb/id2entry.c
+1
-1
1 addition, 1 deletion
servers/slapd/back-bdb/id2entry.c
servers/slapd/back-bdb/tools.c
+1
-1
1 addition, 1 deletion
servers/slapd/back-bdb/tools.c
with
4 additions
and
2 deletions
servers/slapd/back-bdb/delete.c
+
2
−
0
View file @
2d5d4ecf
...
...
@@ -126,6 +126,8 @@ retry: /* transaction retry */
eip
=
ei
->
bei_parent
;
bdb_cache_find_id
(
op
->
o_bd
,
ltid
,
eip
->
bei_id
,
&
eip
,
0
,
locker
,
&
plock
,
op
->
o_tmpmemctx
);
}
else
{
matched
=
ei
->
bei_e
;
}
if
(
eip
)
{
p
=
eip
->
bei_e
;
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/back-bdb/id2entry.c
+
1
−
1
View file @
2d5d4ecf
...
...
@@ -232,7 +232,7 @@ int bdb_entry_get(
struct
bdb_info
*
bdb
=
(
struct
bdb_info
*
)
op
->
o_bd
->
be_private
;
struct
bdb_op_info
*
boi
=
NULL
;
DB_TXN
*
txn
=
NULL
;
Entry
*
e
;
Entry
*
e
=
NULL
;
EntryInfo
*
ei
;
int
rc
;
const
char
*
at_name
=
at
->
ad_cname
.
bv_val
;
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/back-bdb/tools.c
+
1
−
1
View file @
2d5d4ecf
...
...
@@ -107,7 +107,7 @@ ID bdb_tool_entry_next(
Entry
*
bdb_tool_entry_get
(
BackendDB
*
be
,
ID
id
)
{
int
rc
;
Entry
*
e
;
Entry
*
e
=
NULL
;
struct
berval
bv
;
assert
(
be
!=
NULL
);
...
...
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