Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
orbea -
OpenLDAP
Commits
180f5b62
Commit
180f5b62
authored
Mar 05, 2021
by
Quanah Gibson-Mount
Browse files
ITS#9482 - Fix possiblity of uninitialized data being returned in slapi plugin
parent
9d5267e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/slapi/plugin.c
View file @
180f5b62
...
...
@@ -214,6 +214,7 @@ slapi_int_get_plugins(
int
rc
=
LDAP_SUCCESS
;
assert
(
ppFuncPtrs
!=
NULL
);
*
ppFuncPtrs
=
NULL
;
if
(
be
==
NULL
)
{
goto
done
;
...
...
@@ -233,7 +234,6 @@ slapi_int_get_plugins(
}
if
(
numPB
==
0
)
{
*
ppFuncPtrs
=
NULL
;
rc
=
LDAP_SUCCESS
;
goto
done
;
}
...
...
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