mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Fix uninitialized pointers
This commit is contained in:
parent
225fa32d8f
commit
05b9ddc15f
@ -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 New Issue
Block a user