mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-25 16:22:53 -05:00
Check for pPB == NULL (courtesy Pierangelo)
This commit is contained in:
parent
eb554ca792
commit
498420dc26
1 changed files with 4 additions and 0 deletions
|
|
@ -574,6 +574,10 @@ doPluginFNs(
|
|||
int rc = 0;
|
||||
SLAPI_FUNC *pGetPlugin = NULL, *tmpPlugin = NULL;
|
||||
|
||||
if ( pPB == NULL ) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
rc = getAllPluginFuncs(be, funcType, &tmpPlugin );
|
||||
if ( rc != LDAP_SUCCESS || tmpPlugin == NULL ) {
|
||||
/* Nothing to do, front-end should ignore. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue