mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Don't initialize pointers to NULL using calloc().
This commit is contained in:
parent
35655c056f
commit
c9941e6e60
@ -64,7 +64,7 @@ str2entry( char *s )
|
||||
next = s;
|
||||
|
||||
/* initialize reader/writer lock */
|
||||
e = (Entry *) ch_calloc( 1, sizeof(Entry) );
|
||||
e = (Entry *) ch_malloc( sizeof(Entry) );
|
||||
|
||||
if( e == NULL ) {
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
@ -73,14 +73,18 @@ str2entry( char *s )
|
||||
return( NULL );
|
||||
}
|
||||
|
||||
/* initialize entry */
|
||||
e->e_id = NOID;
|
||||
e->e_dn = NULL;
|
||||
e->e_ndn = NULL;
|
||||
e->e_attrs = NULL;
|
||||
e->e_private = NULL;
|
||||
|
||||
/* dn + attributes */
|
||||
e->e_attrs = NULL;
|
||||
vals[0] = &bval;
|
||||
vals[1] = NULL;
|
||||
ptype[0] = '\0';
|
||||
|
||||
while ( (s = ldif_getline( &next )) != NULL ) {
|
||||
if ( *s == '\n' || *s == '\0' ) {
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user