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
Nadezhda Ivanova
OpenLDAP
Commits
40ba9bc8
Commit
40ba9bc8
authored
Feb 02, 1999
by
Kurt Zeilenga
Browse files
Don't try to free NULL idl. Did not cause a problem, though, as
idl_free() had insurance.
parent
c61114a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-ldbm/id2children.c
View file @
40ba9bc8
...
...
@@ -104,7 +104,7 @@ has_children(
{
struct
dbcache
*
db
;
Datum
key
;
int
rc
;
int
rc
=
1
;
ID_BLOCK
*
idl
;
char
buf
[
20
];
...
...
@@ -127,9 +127,13 @@ has_children(
idl
=
idl_fetch
(
be
,
db
,
key
);
ldbm_cache_close
(
be
,
db
);
rc
=
idl
?
1
:
0
;
idl_free
(
idl
);
Debug
(
LDAP_DEBUG_TRACE
,
"<= has_children %d
\n
"
,
rc
,
0
,
0
);
if
(
idl
!=
NULL
)
{
idl_free
(
idl
);
rc
=
0
;
}
Debug
(
LDAP_DEBUG_TRACE
,
"<= has_children( %lu ): %s
\n
"
,
p
->
e_id
,
rc
?
"yes"
:
"no"
,
0
);
return
(
rc
);
}
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