mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +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;
|
AttributeDescription *ad_objectClass = slap_schema.si_ad_objectClass;
|
||||||
LDAPMessage *result;
|
LDAPMessage *result;
|
||||||
char *gattr[ 2 ];
|
char *gattr[ 2 ];
|
||||||
char *filter, *ptr;
|
char *filter = NULL, *ptr;
|
||||||
LDAP *ld;
|
LDAP *ld = NULL;
|
||||||
struct berval mop_ndn = { 0, NULL }, mgr_ndn = { 0, NULL };
|
struct berval mop_ndn = { 0, NULL }, mgr_ndn = { 0, NULL };
|
||||||
|
|
||||||
struct berval group_oc_name = { 0, NULL };
|
struct berval group_oc_name = { 0, NULL };
|
||||||
|
Loading…
Reference in New Issue
Block a user