mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 21:19:53 -05:00
Fix uninitialized pointers
This commit is contained in:
parent
225fa32d8f
commit
05b9ddc15f
1 changed files with 2 additions and 2 deletions
|
|
@ -98,8 +98,8 @@ meta_back_group(
|
|||
AttributeDescription *ad_objectClass = slap_schema.si_ad_objectClass;
|
||||
LDAPMessage *result;
|
||||
char *gattr[ 2 ];
|
||||
char *filter, *ptr;
|
||||
LDAP *ld;
|
||||
char *filter = NULL, *ptr;
|
||||
LDAP *ld = NULL;
|
||||
struct berval mop_ndn = { 0, NULL }, mgr_ndn = { 0, NULL };
|
||||
|
||||
struct berval group_oc_name = { 0, NULL };
|
||||
|
|
|
|||
Loading…
Reference in a new issue